Expand description
SQL Abstract Syntax Tree (AST) types
Modules§
- analyze π
- data_
type π - ddl π
- AST types specific to CREATE/ALTER variants of
crate::ast::Statement
(commonly referred to as Data Definition Language, or DDL) - legacy_
source π - Content of this file can be deleted once we stop supporting
create source
syntax v1. New features shall NOT touch this file. - operator π
- query π
- statement π
- value π
Macros§
Structs§
- Alter
User Statement - Array
- For array type
ARRAY[..]
or[..]
- Assignment
- SQL assignment
foo = { expr | DEFAULT }
as used in SQLUpdate - AstString
- String literal. The difference with String is that it is displayed with single-quotes.
- CdcTable
Info - Close
Cursor Statement - Column
Def - SQL column definition
- Column
Option Def - An optionally-named
ColumnOption
:[ CONSTRAINT <name> ] <column-option>
. - Connection
RefValue - Corresponding
CORRESPONDING [ BY <left paren> <corresponding column list> <right paren> ]
- Create
Connection Statement - Create
Function Body - Postgres specific feature.
- Create
Function With Options - Create
Secret Statement - Create
Sink Statement - Create
Source Statement - Create
Subscription Statement - Create
User Statement - Cstyle
Escaped String - Cte
- A single CTE (used after
WITH
):alias [(col1, col2, ...)] AS ( query )
- Declare
Cursor Statement - Display
Separated - Dollar
Quoted String - Drop
Statement - Escape
Char - An escape character, to represent ββ or a single character.
- Explain
Options - Fetch
- Fetch
Cursor Statement - Format
Encode Options FORMAT ... ENCODE ... [(a=b, ...)] [KEY ENCODE ...]
- Function
- A function call
- Function
ArgList - A list of function arguments, including additional modifiers like
DISTINCT
orORDER BY
. This basically holds all the information between the(
and)
in a function call. - Function
Desc - Function describe in DROP FUNCTION.
- Ident
- An identifier, decomposed into its value or character data and the quote style.
- JobIdents
- Join
- Lateral
View - A hive LATERAL VIEW with potential column aliases
- Object
Name - A name of a table, view, custom type, etc., possibly multi-part, i.e. db.schema.obj
- Operate
Function Arg - Function argument in CREATE FUNCTION.
- Order
ByExpr - An
ORDER BY
expression - Qualified
Operator - Qualified custom operator https://www.postgresql.org/docs/15/sql-expressions.html#SQL-EXPRESSIONS-OPERATOR-CALLS
- Query
- The most complete variant of a
SELECT
query expression, optionally includingWITH
,UNION
/ other set operations, andORDER BY
. - RowSchema
Location - Secret
RefValue - Select
- A restricted variant of
SELECT
(without CTEs/ORDER BY
), which may appear either as the only body item of anSQLQuery
, or as an operand to a set operation likeUNION
. - Source
Watermark - The watermark on source.
WATERMARK FOR <column> AS (<expr>)
- SqlOption
- Struct
Field - Table
Alias - Table
Column Def - Table column definition
- Table
With Joins - Top
- User
Options - Values
- Webhook
Source Info - secure secret definition for webhook source
- Window
Frame - Specifies the data processed by a window function, e.g.
RANGE UNBOUNDED PRECEDING
orROWS BETWEEN 5 PRECEDING AND CURRENT ROW
. - Window
Spec - A window specification (i.e.
OVER (PARTITION BY .. ORDER BY .. etc.)
) - With
- With
Properties
Enums§
- Action
- A privilege on a database object (table, sequence, etc.).
- AddDrop
Sync - Alter
Column Operation - An
ALTER COLUMN
(Statement::AlterTable
) operation - Alter
Connection Operation - Alter
Database Operation - Alter
Fragment Operation - Alter
Function Operation - Alter
Index Operation - Alter
Schema Operation - Alter
Secret Operation - Alter
Sink Operation - Alter
Source Operation - Alter
Subscription Operation - Alter
Table Operation - An
ALTER TABLE
(Statement::AlterTable
) operation - Alter
User Mode - Alter
View Operation - Analyze
Target - ArgMode
- The mode of an argument in CREATE FUNCTION.
- AsOf
- Assignment
Value - AstOption
- This trait is used to replace
Option
becausefmt::Display
can not be implemented forOption<T>
. - Binary
Operator - Binary operators
- Column
Option ColumnOption
s are modifiers that follow a column definition in aCREATE TABLE
statement.- Comment
Object - Compatible
Format Encode - Create
Function Returns - Return types of a function.
- Create
Function Using - Create
Sink - CteInner
- Data
Type - SQL data types
- Date
Time Field - Declare
Cursor - Discard
Type - Distinct
- An
ALL
,DISTINCT
orDISTINCT ON (expr, ...)
afterSELECT
. - Drop
Function Option - Function describe in DROP FUNCTION.
- Drop
Mode - Emit
Mode - Encode
- Check
CONNECTORS_COMPATIBLE_FORMATS
for whatFORMAT ... ENCODE ...
combinations are allowed. - Engine
- Explain
Format - Explain
Type - Expr
- An SQL expression of any type.
- Format
- FORMAT means how to get the operation(Insert/Delete) from the input.
- Function
Arg - Function
ArgExpr - Function
Behavior - These attributes inform the query optimizer about the behavior of the function.
- Function
Definition - Grant
Objects - Objects on which privileges are granted in a GRANT statement.
- Join
Constraint - Join
Operator - Json
Predicate Type - Object
Type - OnConflict
- OnInsert
- Privileges
- Privileges granted in a GRANT statement or revoked in a REVOKE statement.
- Referential
Action <referential_action> = { RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT }
- Secret
RefAs Type - Select
Item - One item of the comma-separated list following
SELECT
- SetExpr
- A node in a tree, representing a βquery bodyβ expression, roughly:
SELECT ... [ {UNION|EXCEPT|INTERSECT} SELECT ...]
- SetOperator
- SetTime
Zone Value - SetVariable
Value - SetVariable
Value Single - Show
Create Type - Show
Object - Show
Statement Filter - Since
- SqlOption
Value - Statement
- A top-level statement (SELECT, INSERT, CREATE, etc.)
- Table
Constraint - A table-level constraint, specified in a
CREATE TABLE
or anALTER TABLE ADD <constraint>
statement. - Table
Factor - A table name or a parenthesized subquery with an optional alias
- Transaction
Access Mode - Transaction
Isolation Level - Transaction
Mode - Trim
Where Field - Unary
Operator - Unary operators
- User
Option - Value
- Primitive SQL values such as number and string
- Window
Frame Bound - Specifies WindowFrameβs
start_bound
andend_bound
- Window
Frame Bounds - Window
Frame Exclusion - Frame exclusion option of WindowFrame.
- Window
Frame Units
Statics§
Traits§
- ParseTo
- Consumes token from the parser into an AST node.