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

[plsql] using_index_clause should use index_properties instead of index_attributes #4395

Merged
merged 1 commit into from
Feb 15, 2025

Conversation

Dysprosium0626
Copy link
Contributor

@Dysprosium0626 Dysprosium0626 commented Jan 24, 2025

According to Oracle latest SQL Language Reference, using_index_clause for constraint is illustrated as following:
using_index_clause
using_index_clause
index_properties
image

However, in PlSqlParser.g4,using_index_clause:

using_index_clause
: USING INDEX (index_name | '(' create_index ')' | index_attributes)?
;

Actually it should be modified to:

using_index_clause
    : USING INDEX (index_name | '(' create_index ')' | index_properties)
    ;

@teverett teverett added the plsql label Feb 4, 2025
@teverett
Copy link
Member

@Dysprosium0626 thanks

@teverett teverett merged commit ad40657 into antlr:master Feb 15, 2025
31 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants