If the underlying dataset selects from a single table and has no explicit selection, select table.* from that table.
# File lib/sequel/plugins/table_select.rb, line 33 def convert_input_dataset(ds) ds = super unless ds.opts[:select] ds = ds.select_all(ds.first_source) end ds end