-
-
Notifications
You must be signed in to change notification settings - Fork 873
Add support for PostGIS geometry(point)
datatype.
#6543
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
Conversation
Coverage Results ✅
|
"POINT", | ||
Sequence( | ||
OneOf(*_geometry_type_keywords, "GEOMETRY", "GEOGRAPHY"), | ||
Ref("CommaSegment"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am by no means an expert on postgis, but it might make more sense to make the comma and numeric literal (the SRID) an optional sequence instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed to be an optional sequence.
OneOf( | ||
"POINT", | ||
Sequence( | ||
OneOf(*_geometry_type_keywords, "GEOMETRY", "GEOGRAPHY"), | ||
Sequence( | ||
Ref("CommaSegment"), | ||
Ref("NumericLiteralSegment"), | ||
optional=True, | ||
), | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this can be further simplified because POINT
is in the _geometry_type_keywords
OneOf( | |
"POINT", | |
Sequence( | |
OneOf(*_geometry_type_keywords, "GEOMETRY", "GEOGRAPHY"), | |
Sequence( | |
Ref("CommaSegment"), | |
Ref("NumericLiteralSegment"), | |
optional=True, | |
), | |
), | |
Sequence( | |
OneOf(*_geometry_type_keywords, "GEOMETRY", "GEOGRAPHY"), | |
Sequence( | |
Ref("CommaSegment"), | |
Ref("NumericLiteralSegment"), | |
optional=True, | |
), | |
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad. I refactored now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for taking care of this!
Closes #6351.
Brief summary of the change made
Are there any other side effects of this change that we should be aware of?
Pull Request checklist
Please confirm you have completed any of the necessary steps below.
Included test cases to demonstrate any code changes, which may be one or more of the following:
.yml
rule test cases intest/fixtures/rules/std_rule_cases
..sql
/.yml
parser test cases intest/fixtures/dialects
(note YML files can be auto generated withtox -e generate-fixture-yml
).test/fixtures/linter/autofix
.Added appropriate documentation for the change.
Created GitHub issues for any relevant followup/future enhancements if appropriate.