Home
last modified time | relevance | path

Searched refs:AST_FROM (Results 1 – 4 of 4) sorted by relevance

/dports/textproc/textql/textql-1d6fef5/sqlparser/
H A Dsql_mod.go32 statement.From = &From{Type: AST_FROM, Expr: tableExprs}
H A Dsql.y181 …$$ = &Select{Comments: nil, Distinct: $1, SelectExprs: $2, From: NewFrom(AST_FROM, $3), Where: New…
187 …$$ = &Select{Comments: Comments($2), Distinct: $3, SelectExprs: $4, From: NewFrom(AST_FROM, $5), W…
H A Dsql.go823 …t: yyS[yypt-8].str, SelectExprs: yyS[yypt-7].selectExprs, From: NewFrom(AST_FROM, yyS[yypt-6].tabl…
828 …t: yyS[yypt-8].str, SelectExprs: yyS[yypt-7].selectExprs, From: NewFrom(AST_FROM, yyS[yypt-6].tabl…
H A Dast.go451 AST_FROM = "from" const