Module ast

Source
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§

impl_fmt_display
impl_parse_to

Structs§

AlterUserStatement
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.
CdcTableInfo
CloseCursorStatement
ColumnDef
SQL column definition
ColumnOptionDef
An optionally-named ColumnOption: [ CONSTRAINT <name> ] <column-option>.
ConnectionRefValue
Corresponding
CORRESPONDING [ BY <left paren> <corresponding column list> <right paren> ]
CreateConnectionStatement
CreateFunctionBody
Postgres specific feature.
CreateFunctionWithOptions
CreateSecretStatement
CreateSinkStatement
CreateSourceStatement
CreateSubscriptionStatement
CreateUserStatement
CstyleEscapedString
Cte
A single CTE (used after WITH): alias [(col1, col2, ...)] AS ( query )
DeclareCursorStatement
DisplaySeparated
DollarQuotedString
DropStatement
EscapeChar
An escape character, to represent β€˜β€™ or a single character.
ExplainOptions
Fetch
FetchCursorStatement
FormatEncodeOptions
FORMAT ... ENCODE ... [(a=b, ...)] [KEY ENCODE ...]
Function
A function call
FunctionArgList
A list of function arguments, including additional modifiers like DISTINCT or ORDER BY. This basically holds all the information between the ( and ) in a function call.
FunctionDesc
Function describe in DROP FUNCTION.
Ident
An identifier, decomposed into its value or character data and the quote style.
JobIdents
Join
LateralView
A hive LATERAL VIEW with potential column aliases
ObjectName
A name of a table, view, custom type, etc., possibly multi-part, i.e. db.schema.obj
OperateFunctionArg
Function argument in CREATE FUNCTION.
OrderByExpr
An ORDER BY expression
QualifiedOperator
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 including WITH, UNION / other set operations, and ORDER BY.
RowSchemaLocation
SecretRefValue
Select
A restricted variant of SELECT (without CTEs/ORDER BY), which may appear either as the only body item of an SQLQuery, or as an operand to a set operation like UNION.
SourceWatermark
The watermark on source. WATERMARK FOR <column> AS (<expr>)
SqlOption
StructField
TableAlias
TableColumnDef
Table column definition
TableWithJoins
Top
UserOptions
Values
WebhookSourceInfo
secure secret definition for webhook source
WindowFrame
Specifies the data processed by a window function, e.g. RANGE UNBOUNDED PRECEDING or ROWS BETWEEN 5 PRECEDING AND CURRENT ROW.
WindowSpec
A window specification (i.e. OVER (PARTITION BY .. ORDER BY .. etc.))
With
WithProperties

Enums§

Action
A privilege on a database object (table, sequence, etc.).
AddDropSync
AlterColumnOperation
An ALTER COLUMN (Statement::AlterTable) operation
AlterConnectionOperation
AlterDatabaseOperation
AlterFragmentOperation
AlterFunctionOperation
AlterIndexOperation
AlterSchemaOperation
AlterSecretOperation
AlterSinkOperation
AlterSourceOperation
AlterSubscriptionOperation
AlterTableOperation
An ALTER TABLE (Statement::AlterTable) operation
AlterUserMode
AlterViewOperation
AnalyzeTarget
ArgMode
The mode of an argument in CREATE FUNCTION.
AsOf
AssignmentValue
AstOption
This trait is used to replace Option because fmt::Display can not be implemented for Option<T>.
BinaryOperator
Binary operators
ColumnOption
ColumnOptions are modifiers that follow a column definition in a CREATE TABLE statement.
CommentObject
CompatibleFormatEncode
CreateFunctionReturns
Return types of a function.
CreateFunctionUsing
CreateSink
CteInner
DataType
SQL data types
DateTimeField
DeclareCursor
DiscardType
Distinct
An ALL, DISTINCT or DISTINCT ON (expr, ...) after SELECT.
DropFunctionOption
Function describe in DROP FUNCTION.
DropMode
EmitMode
Encode
Check CONNECTORS_COMPATIBLE_FORMATS for what FORMAT ... ENCODE ... combinations are allowed.
Engine
ExplainFormat
ExplainType
Expr
An SQL expression of any type.
Format
FORMAT means how to get the operation(Insert/Delete) from the input.
FunctionArg
FunctionArgExpr
FunctionBehavior
These attributes inform the query optimizer about the behavior of the function.
FunctionDefinition
GrantObjects
Objects on which privileges are granted in a GRANT statement.
JoinConstraint
JoinOperator
JsonPredicateType
ObjectType
OnConflict
OnInsert
Privileges
Privileges granted in a GRANT statement or revoked in a REVOKE statement.
ReferentialAction
<referential_action> = { RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT }
SecretRefAsType
SelectItem
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
SetTimeZoneValue
SetVariableValue
SetVariableValueSingle
ShowCreateType
ShowObject
ShowStatementFilter
Since
SqlOptionValue
Statement
A top-level statement (SELECT, INSERT, CREATE, etc.)
TableConstraint
A table-level constraint, specified in a CREATE TABLE or an ALTER TABLE ADD <constraint> statement.
TableFactor
A table name or a parenthesized subquery with an optional alias
TransactionAccessMode
TransactionIsolationLevel
TransactionMode
TrimWhereField
UnaryOperator
Unary operators
UserOption
Value
Primitive SQL values such as number and string
WindowFrameBound
Specifies WindowFrame’s start_bound and end_bound
WindowFrameBounds
WindowFrameExclusion
Frame exclusion option of WindowFrame.
WindowFrameUnits

Statics§

REDACT_SQL_OPTION_KEYWORDS

Traits§

ParseTo
Consumes token from the parser into an AST node.

Functions§

display_comma_separated
display_separated
get_delimiter

Type Aliases§

RedactSqlOptionKeywordsRef