Export to GitHub

ruby-sequel - issue #248

postgres: rename_table failed


Posted on Nov 13, 2008 by Massive Monkey

What steps will reproduce the problem?

DB.create_table :atable do integer :acolumn end DB.rename_table(:atable, :anothertable)

What is the expected output? What do you see instead?

Sequel::DatabaseError: PGError ERROR: syntax error at or near "." LINE 1: ALTER TABLE "public"."atable" RENAME TO "public"."anothertab... ^ What version of the product are you using? On what operating system?

sequel-2.7.1 postgres 8.2.10

Please provide any additional information below.

Comment #1

Posted on Nov 13, 2008 by Happy Bear

This is a definite bug in sequel, it should not be using the schema name in the RENAME TO clause. I'll fix it soon.

Comment #2

Posted on Nov 17, 2008 by Happy Bear

Fixed: http://github.com/jeremyevans/sequel/commit/c3c2a4f9ff09f622dc10d66b6a9fe3f29c78a5bd

Status: Fixed