datafusion-sqlparse/tests
Nickolay Ponomarev 523f086be7 Introduce SQLObjectName struct (4.1/4.4)
(To store "A name of a table, view, custom type, etc., possibly
multi-part, i.e. db.schema.obj".)

Before this change

  - some places used `String` for this (these are updated in this commit)

  - while others (notably SQLStatement::SQLDelete::relation, which is
    the reason for this series of commits) relied on
    ASTNode::SQLCompoundIdentifier (which is also backed by a 
    Vec<SQLIdent>, but, as a variant of ASTNode enum, is not convenient
    to use when you know you need that specific variant).
2019-02-07 05:31:40 +03:00
..
sqlparser_ansi.rs Stricter parsing for subqueries (3/4) 2019-02-07 05:31:36 +03:00
sqlparser_generic.rs Introduce SQLObjectName struct (4.1/4.4) 2019-02-07 05:31:40 +03:00
sqlparser_postgres.rs Introduce SQLObjectName struct (4.1/4.4) 2019-02-07 05:31:40 +03:00