aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapter_test.rb
diff options
context:
space:
mode:
authorNoemj <olli.rissanen@helsinki.fi>2013-01-30 14:55:01 +0200
committerNoemj <olli.rissanen@helsinki.fi>2013-02-11 15:17:06 +0200
commita53935dfa0538fba0ab805f1a2c4ca2c421ed5e1 (patch)
treef71fbbe7af3095315b8abcbb2e678bacdaf68737 /activerecord/test/cases/adapter_test.rb
parent5f30b547c8acbf9086329e9c93a3c77768bfb1ea (diff)
downloadrails-a53935dfa0538fba0ab805f1a2c4ca2c421ed5e1.tar.gz
rails-a53935dfa0538fba0ab805f1a2c4ca2c421ed5e1.tar.bz2
rails-a53935dfa0538fba0ab805f1a2c4ca2c421ed5e1.zip
Changed update_record to use prepared statements.
Diffstat (limited to 'activerecord/test/cases/adapter_test.rb')
-rw-r--r--activerecord/test/cases/adapter_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/test/cases/adapter_test.rb b/activerecord/test/cases/adapter_test.rb
index f9149c1819..0af7cbf74f 100644
--- a/activerecord/test/cases/adapter_test.rb
+++ b/activerecord/test/cases/adapter_test.rb
@@ -1,4 +1,5 @@
require "cases/helper"
+require "models/book"
module ActiveRecord
class AdapterTest < ActiveRecord::TestCase
@@ -6,6 +7,19 @@ module ActiveRecord
@connection = ActiveRecord::Base.connection
end
+ ##
+ # PostgreSQL does not support null bytes in strings
+ unless current_adapter?(:PostgreSQLAdapter)
+ def test_update_prepared_statement
+ b = Book.create(name: "my \x00 book")
+ b.reload
+ assert_equal "my \x00 book", b.name
+ b.update_attributes(name: "my other \x00 book")
+ b.reload
+ assert_equal "my other \x00 book", b.name
+ end
+ end
+
def test_tables
tables = @connection.tables
assert tables.include?("accounts")