-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
openlineage, aws: add OpenLineage support for Redshift SQL. #35794
openlineage, aws: add OpenLineage support for Redshift SQL. #35794
Conversation
@ferruzzi, you might be interested into this one :) |
9140ea8
to
9bffe5c
Compare
Still waiting to resolve the conversation with Niko but other than that discussion, the rest LGTM |
Pinging @o-nikolas then :) |
Add flat information schema query support in SQLParser. Signed-off-by: Jakub Dardzinski <[email protected]>
9bffe5c
to
bedcba1
Compare
@ferruzzi it seems we're ready to go? |
@ferruzzi @o-nikolas the PR is hanging for quite a long time. Is there anything in particular that would need explanation or any action? |
Dennis gave a LGTM in a previous comment, so I approved and merged with two approvals :) |
Add flat information schema query support in SQLParser.
This PR adds support for Redshift SQL.
Additional changes in OpenLineage SQL utils were neccessary. This is because Redshift has capability to make cross-database queries, however, traditional cross-database queries to
information_schema.columns
does not work. Instead one should read fromSVV_REDSHIFT_COLUMNS
which is a single table containing multi-database information.