We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Summary
Description for this feature.
Example:
EXPLAIN SYNTAX SELECT number FROM numbers(10) ┌─explain──────────┐ │ SELECT number │ │ FROM numbers(10) │ └──────────────────┘
explain ast select number from numbers(10); ┌─explain─────────────────────────────────────┐ │ SelectWithUnionQuery (children 1) │ │ ExpressionList (children 1) │ │ SelectQuery (children 2) │ │ ExpressionList (children 1) │ │ Identifier number │ │ TablesInSelectQuery (children 1) │ │ TablesInSelectQueryElement (children 1) │ │ TableExpression (children 1) │ │ Function numbers (children 1) │ │ ExpressionList (children 1) │ │ Literal UInt64_10 │ └─────────────────────────────────────────────┘
The text was updated successfully, but these errors were encountered:
b41sh
Successfully merging a pull request may close this issue.
Summary
Description for this feature.
Example:
Example:
The text was updated successfully, but these errors were encountered: