Skip to content

Commit 920f750

Browse files
authored
Fix #96 (Array Quoting) by using correct arel accessor (#97)
1 parent 5b7055e commit 920f750

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

lib/torque/postgresql/arel/visitors.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def visit_Arel_Nodes_Quoted(o, collector)
2525

2626
# Allow quoted arrays to get here
2727
def visit_Arel_Nodes_Casted(o, collector)
28-
value = o.respond_to?(:val) ? o.val : o.value
28+
value = o.value_for_database
2929
return super unless value.is_a?(::Enumerable)
3030
quote_array(value, collector)
3131
end

lib/torque/postgresql/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Torque
44
module PostgreSQL
5-
VERSION = '3.4.0'
5+
VERSION = '3.4.1'
66
end
77
end

spec/schema.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
version = 3
13+
version = 4
1414

1515
return if ActiveRecord::Migrator.current_version == version
1616
ActiveRecord::Schema.define(version: version) do
@@ -59,6 +59,7 @@
5959
t.string "url"
6060
t.enum "type", enum_type: :types
6161
t.enum "conflicts", enum_type: :conflicts, array: true
62+
t.jsonb "metadata"
6263
t.datetime "created_at", null: false
6364
t.datetime "updated_at", null: false
6465
end

spec/tests/arel_spec.rb

+5
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@
6262
it 'does not break jsonb' do
6363
expect { connection.add_column(:authors, :profile, :jsonb, default: []) }.not_to raise_error
6464
expect(Author.columns_hash['profile'].default).to eq('[]')
65+
66+
condition = Author.arel_table['profile'].is_distinct_from([])
67+
expect(Author.where(condition).to_sql).to eq(<<~SQL.squish)
68+
SELECT "authors".* FROM "authors" WHERE "authors"."profile" IS DISTINCT FROM '[]'
69+
SQL
6570
end
6671

6772
it 'works properly when column is an array' do

0 commit comments

Comments
 (0)