Method: Sequel::Oracle::DatasetMethods#except
- Defined in:
- lib/sequel/adapters/shared/oracle.rb
permalink #except(dataset, opts = OPTS) ⇒ Object
Oracle uses MINUS instead of EXCEPT, and doesn’t support EXCEPT ALL
384 385 386 387 |
# File 'lib/sequel/adapters/shared/oracle.rb', line 384 def except(dataset, opts=OPTS) raise(Sequel::Error, "EXCEPT ALL not supported") if opts[:all] compound_clone(:minus, dataset, opts) end |