module Sequel::Plugins::TableSelect::ClassMethods

Private Instance Methods

convert_input_dataset(ds) click to toggle source

If the underlying dataset selects from a single table and has no explicit selection, select table.* from that table.

Calls superclass method
   # File lib/sequel/plugins/table_select.rb
40 def convert_input_dataset(ds)
41   ds = super
42   unless ds.opts[:select]
43     ds = ds.select_all(ds.first_source)
44   end
45   ds
46 end