Merge pull request #13451 from dmathieu/quoting_non_strings

Fix typecasting array of integers
This commit is contained in:
Yves Senn 2013-12-22 09:14:06 -08:00
commit c0a6ffb799
2 changed files with 7 additions and 1 deletions

@ -144,7 +144,7 @@ def escape_hstore(value)
def quote_and_escape(value)
case value
when "NULL"
when "NULL", Numeric
value
else
"\"#{value.gsub(/"/,"\\\"")}\""

@ -66,6 +66,12 @@ def test_type_cast_array
assert_equal([nil], @column.type_cast('{NULL}'))
end
def test_type_cast_integers
x = PgArray.new(ratings: ['1', '2'])
assert x.save!
assert_equal(['1', '2'], x.ratings)
end
def test_rewrite
@connection.execute "insert into pg_arrays (tags) VALUES ('{1,2,3}')"
x = PgArray.first