Export to GitHub

ruby-sequel - issue #293

SQL Server rename_table fix


Posted on Apr 15, 2010 by Happy Ox

What steps will reproduce the problem? 1. DB.rename_table :a, :b

SQL Server does not support ALTER TABLE [a] RENAME TO [b]

Need to add this method to shared/mssql.rb

def rename_table_sql(name, new_name) "SP_RENAME #{quote_schema_table(name)}, #{quote_schema_table(new_name)}" end

Comment #1

Posted on Apr 15, 2010 by Happy Bear

Thanks, patch applied: http://github.com/jeremyevans/sequel/commit/70f58e6e9b04ffa2a6a1f8b8178cd8bdd115b788

Status: Fixed