Method: Sequel::Dataset#supports_insert_select?

Defined in:
lib/sequel/dataset/features.rb

#supports_insert_select?Boolean

Whether this dataset supports the insert_select method for returning all columns values directly from an insert query, false by default.

Returns:

  • (Boolean)
[View source]

93
94
95
# File 'lib/sequel/dataset/features.rb', line 93

def supports_insert_select?
  supports_returning?(:insert)
end