Class: Sequel::Qualifier

Inherits:
ASTTransformer show all
Defined in:
lib/sequel/ast_transformer.rb

Overview

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

Instance Method Summary collapse

Methods inherited from ASTTransformer

#transform

Constructor Details

#initialize(table) ⇒ Qualifier

Set the table used to qualify unqualified columns



99
100
101
# File 'lib/sequel/ast_transformer.rb', line 99

def initialize(table)
  @table = table
end