module Sequel::Plugins::TableSelect::ClassMethods
Private Instance Methods
Source
# 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
If the underlying dataset selects from a single table and has no explicit selection, select table.* from that table.
Calls superclass method