Sha256: 7cbdb30fe096ddadc2c858d1b5c353db5c3e2f4e3b31d278714e282671226e9e

Contents?: true

Size: 995 Bytes

Versions: 4

Compression:

Stored size: 995 Bytes

Contents

# This changes Sequel's literalization of IN/NOT IN with an empty
# array value to not return NULL even if one of the referenced
# columns is NULL:
#
#   DB[:test].where(:name=>[])
#   # SELECT * FROM test WHERE (1 = 0)
#   DB[:test].exclude(:name=>[])
#   # SELECT * FROM test WHERE (1 = 1)
#
# The default Sequel behavior is to respect NULLs, so that when
# name is NULL, the expression returns NULL.
#
# You can load this extension into specific datasets:
#
#   ds = DB[:table]
#   ds.extension(:empty_array_ignore_nulls)
#
# Or you can load it into all of a database's datasets, which
# is probably the desired behavior if you are using this extension:
#
#   DB.extension(:empty_array_ignore_nulls)

module Sequel
  module EmptyArrayIgnoreNulls
    # Use a simple expression that is always true or false, never NULL.
    def empty_array_value(op, cols)
      {1 => ((op == :IN) ? 0 : 1)}
    end
    
  end

  Dataset.register_extension(:empty_array_ignore_nulls, EmptyArrayIgnoreNulls)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sequel-4.1.1 lib/sequel/extensions/empty_array_ignore_nulls.rb
sequel-4.1.0 lib/sequel/extensions/empty_array_ignore_nulls.rb
sequel-4.0.0 lib/sequel/extensions/empty_array_ignore_nulls.rb
sequel-3.48.0 lib/sequel/extensions/empty_array_ignore_nulls.rb