Class Sequel::Qualifier
In: lib/sequel/ast_transformer.rb
Parent: ASTTransformer

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

Methods

new  

Public Class methods

Store the dataset to use as the basis for qualification, and the table used to qualify unqualified columns.

[Source]

    # File lib/sequel/ast_transformer.rb, line 80
80:     def initialize(ds, table)
81:       @ds = ds
82:       @table = table
83:     end

[Validate]