class Sequel::Qualifier

Handles qualifying existing datasets, so that unqualified columns in the dataset are qualified with a given table name.

Public Class Methods

new(table) click to toggle source

Set the table used to qualify unqualified columns

    # File lib/sequel/ast_transformer.rb
 99 def initialize(table)
100   @table = table
101 end