class Sequel::Qualifier

  1. lib/sequel/ast_transformer.rb
Parent: Sequel

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

Methods

Public Class

  1. new

Public Class methods

new (ds, table)

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

[show source]
# File lib/sequel/ast_transformer.rb, line 84
def initialize(ds, table)
  @ds = ds
  @table = table
end