Open manticore-projects opened 1 year ago
Example: AST of SQL Text with multiple statements:
SQL Text ├─Statements: statement.select.PlainSelect │ ├─selectItems: statement.select.SelectItem │ │ └─AllColumns: * │ └─Table: dual └─Statements: statement.select.PlainSelect ├─selectItems: statement.select.SelectItem │ └─AllColumns: * └─Table: dual
Would be nice to optionally avoid the Root Node SQL Text and print it out as:
SQL Text
Statements: statement.select.PlainSelect ├─selectItems: statement.select.SelectItem │ └─AllColumns: * └─Table: dual Statements: statement.select.PlainSelect ├─selectItems: statement.select.SelectItem │ └─AllColumns: * └─Table: dual
Example: AST of SQL Text with multiple statements:
Would be nice to optionally avoid the Root Node
SQL Text
and print it out as: