Method: PgQuery::ParserResult#initialize
- Defined in:
- lib/pg_query/parse.rb
#initialize(query, tree, warnings = []) ⇒ ParserResult
Returns a new instance of ParserResult.
25 26 27 28 29 30 31 32 |
# File 'lib/pg_query/parse.rb', line 25 def initialize(query, tree, warnings = []) @query = query @tree = tree @warnings = warnings @tables = nil @aliases = nil @cte_names = nil end |