sql-parser-cst
sql-parser-cst copied to clipboard
Mistakes in type definitions
These fields don't actually exists, but are defined in types:
- The
ResetAllParametersClausecontainsnamefield. - The
CreateFunctionStmtcontainsbehaviorKwfield.
Also the parsing rule for ResetAllParametersClause seems to be consuming extra whitespace:
reset_all_parameters_clause
= kw:(RESET __ ALL __) { // <--- here
return loc({
type: "reset_all_parameters_clause",
resetAllKw: read(kw),
});
}