public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Fix postgres bug when change_column is called with invalid parameters. [#861 
state:resolved]

Signed-off-by: Tarmo Tänav <tarmo@itech.ee>
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
azimux (author)
Sun Aug 17 23:45:25 -0700 2008
lifo (committer)
Thu Aug 21 08:22:14 -0700 2008
commit  0d74e72e6de7b96e158950a449ea1ccce6f5b8d7
tree    8ee229cf784134649b3b04cd170c7c5908be5f91
parent  49c0e1e594c95d7e8446ebabecc9147afa62de7d
...
761
762
763
764
 
 
765
766
767
...
761
762
763
 
764
765
766
767
768
0
@@ -761,7 +761,8 @@ module ActiveRecord
0
 
0
         begin
0
           execute "ALTER TABLE #{quoted_table_name} ALTER COLUMN #{quote_column_name(column_name)} TYPE #{type_to_sql(type, options[:limit], options[:precision], options[:scale])}"
0
-        rescue ActiveRecord::StatementInvalid
0
+        rescue ActiveRecord::StatementInvalid => e
0
+          raise e if postgresql_version > 80000
0
           # This is PostgreSQL 7.x, so we have to use a more arcane way of doing it.
0
           begin
0
             begin_db_transaction

Comments