Documentation
¶
Overview ¶
Package parser implements a parser for T-SQL.
Index ¶
Constants ¶
View Source
const ( LOWEST int OR_PREC // OR AND_PREC // AND NOT_PREC // NOT COMPARE // =, <>, <, >, <=, >= BETWEEN_PREC // BETWEEN, IN, LIKE BITOR // | BITXOR // ^ BITAND // & SHIFT // <<, >> SUM // +, - PRODUCT // *, /, % PREFIX // -X, ~X CALL // function() INDEX // table.column )
Operator precedence levels
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Parser ¶
type Parser struct {
// contains filtered or unexported fields
}
Parser represents a T-SQL parser.
func (*Parser) ParseProgram ¶
ParseProgram parses the entire program.
Click to show internal directories.
Click to hide internal directories.