Skip to content
New issue

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

[SPARK-44395][SQL] Update TVF arguments to require parentheses around identifier after TABLE keyword #41965

Closed
wants to merge 5 commits into from

Conversation

dtenedor
Copy link
Contributor

@dtenedor dtenedor commented Jul 12, 2023

What changes were proposed in this pull request?

This PR updates the parsing of table function arguments to require parentheses around identifier after the TABLE keyword. Instead of TABLE t, the syntax should look like TABLE(t) instead as specified in the SQL standard.

  • I kept the previous syntax without the parentheses as an optional case in the SQL grammar so that we can catch it in the AstBuilder and throw an informative error message telling the user to add parentheses and try the query again.

  • I had to swap the order of parsing table function arguments, so the table(identifier) syntax does not accidentally parse as a scalar function call:

functionTableArgument
    : functionTableReferenceArgument
    | functionArgument
    ;

Why are the changes needed?

This syntax is written down in the SQL standard. Per the standard, TABLE identifier should actually be passed as TABLE(identifier).

Does this PR introduce any user-facing change?

Yes, SQL syntax changes slightly.

How was this patch tested?

This PR adds and updates unit test coverage.

commit
@github-actions github-actions bot added the SQL label Jul 12, 2023
@dtenedor
Copy link
Contributor Author

@ueshin FYI

Copy link
Member

@ueshin ueshin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, pending tests. Thanks for the fix!

@github-actions github-actions bot added the DOCS label Jul 12, 2023
Copy link
Contributor

@allisonwang-db allisonwang-db left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for fixing this!

common/utils/src/main/resources/error/error-classes.json Outdated Show resolved Hide resolved
@ueshin
Copy link
Member

ueshin commented Jul 13, 2023

Thanks! merging to master.

@ueshin ueshin closed this in 63cef16 Jul 13, 2023
ragnarok56 pushed a commit to ragnarok56/spark that referenced this pull request Mar 2, 2024
… identifier after TABLE keyword

### What changes were proposed in this pull request?

This PR updates the parsing of table function arguments to require parentheses around identifier after the TABLE keyword. Instead of `TABLE t`, the syntax should look like `TABLE(t)` instead as specified in the SQL standard.

* I kept the previous syntax without the parentheses as an optional case in the SQL grammar so that we can catch it in the `AstBuilder` and throw an informative error message telling the user to add parentheses and try the query again.

* I had to swap the order of parsing table function arguments, so the `table(identifier)` syntax does not accidentally parse as a scalar function call:

```
functionTableArgument
    : functionTableReferenceArgument
    | functionArgument
    ;
```

### Why are the changes needed?

This syntax is written down in the SQL standard. Per the standard, `TABLE identifier` should actually be passed as `TABLE(identifier)`.

### Does this PR introduce _any_ user-facing change?

Yes, SQL syntax changes slightly.

### How was this patch tested?

This PR adds and updates unit test coverage.

Closes apache#41965 from dtenedor/parentheses-table-clause.

Authored-by: Daniel Tenedorio <daniel.tenedorio@databricks.com>
Signed-off-by: Takuya UESHIN <ueshin@databricks.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
3 participants