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

Set the table used to qualify unqualified columns

[Source]

    # File lib/sequel/ast_transformer.rb, line 93
93:     def initialize(table)
94:       @table = table
95:     end

[Validate]