Skip to content

Commit

Permalink
PostgreSQL: fix transaction bug that can occur if you call change_col…
Browse files Browse the repository at this point in the history
…umn with invalid parameters

[#861 state:resolved]
  • Loading branch information
azimux authored and tarmo committed Aug 24, 2008
1 parent 893d762 commit 6e71a35
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -744,7 +744,8 @@ def change_column(table_name, column_name, type, options = {})

begin
execute "ALTER TABLE #{quoted_table_name} ALTER COLUMN #{quote_column_name(column_name)} TYPE #{type_to_sql(type, options[:limit], options[:precision], options[:scale])}"
rescue ActiveRecord::StatementInvalid
rescue ActiveRecord::StatementInvalid => e
raise e if postgresql_version > 80000
# This is PostgreSQL 7.x, so we have to use a more arcane way of doing it.
begin
begin_db_transaction
Expand Down

0 comments on commit 6e71a35

Please sign in to comment.