Method: Sequel::Postgres::DatasetMethods#empty?
- Defined in:
- lib/sequel/adapters/shared/postgres.rb
#empty? ⇒ Boolean
Always return false when using VALUES
2081 2082 2083 2084 |
# File 'lib/sequel/adapters/shared/postgres.rb', line 2081 def empty? return false if @opts[:values] super end |