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 86
86:     def initialize(ds, table)
87:       @ds = ds
88:       @table = table
89:     end

[Validate]