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

fix: Workaround for sqlparse issue #652 #17995

Conversation

john-bodley
Copy link
Member

SUMMARY

This PR provides a proposed workaround—by way of monkey patching—to andialbrecht/sqlparse#652 which seems to have an incorrect regex pattern when matching single string tokens which contain an escape.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

TESTING INSTRUCTIONS

Added unit tests.

ADDITIONAL INFORMATION

  • Has associated issue:
  • Required feature flags:
  • Changes UI
  • Includes DB Migration (follow approval process in SIP-59)
    • Migration is atomic, supports rollback & is backwards-compatible
    • Confirm DB migration upgrade and downgrade tested
    • Runtime estimates and downtime expectations provided
  • Introduces new feature or API
  • Removes existing feature or API

@codecov
Copy link

codecov bot commented Jan 11, 2022

Codecov Report

Merging #17995 (711106f) into master (f7add54) will decrease coverage by 0.73%.
The diff coverage is 63.29%.

❗ Current head 711106f differs from pull request most recent head b1d84d7. Consider uploading reports for the commit b1d84d7 to get more accurate results
Impacted file tree graph

@@            Coverage Diff             @@
##           master   #17995      +/-   ##
==========================================
- Coverage   67.05%   66.32%   -0.74%     
==========================================
  Files        1612     1569      -43     
  Lines       64999    61660    -3339     
  Branches     6872     6232     -640     
==========================================
- Hits        43586    40894    -2692     
+ Misses      19546    19167     -379     
+ Partials     1867     1599     -268     
Flag Coverage Δ
hive 53.23% <29.93%> (-0.09%) ⬇️
mysql 82.09% <63.05%> (-0.13%) ⬇️
postgres 82.14% <63.05%> (-0.13%) ⬇️
presto 53.07% <29.93%> (?)
python 82.58% <63.05%> (-0.01%) ⬇️
sqlite 81.83% <63.05%> (-0.13%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...rontend/src/components/Select/DeprecatedSelect.tsx 37.33% <ø> (-8.23%) ⬇️
superset-frontend/src/components/Select/styles.tsx 67.92% <ø> (+1.82%) ⬆️
superset/connectors/sqla/models.py 88.31% <ø> (+1.23%) ⬆️
superset/dashboards/filter_state/api.py 100.00% <ø> (ø)
superset/views/core.py 77.74% <0.00%> (-0.08%) ⬇️
superset/utils/encrypt.py 41.46% <22.41%> (-46.54%) ⬇️
superset/cli.py 54.19% <37.50%> (-0.63%) ⬇️
superset/reports/commands/create.py 89.18% <92.30%> (+0.66%) ⬆️
...rontend/src/dashboard/components/DashboardGrid.jsx 65.11% <100.00%> (ø)
superset/config.py 91.66% <100.00%> (+0.02%) ⬆️
... and 492 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update f7add54...b1d84d7. Read the comment docs.

Copy link
Member

@etr2460 etr2460 left a comment

Choose a reason for hiding this comment

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

one question, but lgtm otherwise

@@ -41,6 +42,16 @@
logger = logging.getLogger(__name__)


# Workaround for https://github.com/andialbrecht/sqlparse/issues/652.
sqlparse.keywords.SQL_REGEX.insert(
Copy link
Member

Choose a reason for hiding this comment

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

do we not need to replace the erroneous regex?

Copy link
Member Author

Choose a reason for hiding this comment

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

@etr2460 I guess one could replace it though the position could change. This is a pattern I've used elsewhere where I simply increase the priority of the match by inserting it at the top of the list.

Copy link
Member

Choose a reason for hiding this comment

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

ah, that makes sense. didn't realize the list was prioritized

@etr2460
Copy link
Member

etr2460 commented Jan 11, 2022

Oh also, should we consider forking sqlparse to:

  • Fix the issue preventing us from upgrading beyond 0.3.0
  • Let us fix other issues without cherry picking

cc @betodealmeida @villebro @amitmiran137 who might have thoughts here too

Copy link
Member

@villebro villebro left a comment

Choose a reason for hiding this comment

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

The change LGTM with some minor nits. It might also be worthwhile considering adding a unit test for this.

@@ -41,6 +42,16 @@
logger = logging.getLogger(__name__)


# Workaround for https://github.com/andialbrecht/sqlparse/issues/652.
Copy link
Member

Choose a reason for hiding this comment

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

Could we add a TODO: here to remove when this is fixed upstream and also add a comment in setup.py where the version is pinned to remove this if it's been fixed?

Copy link
Member Author

@john-bodley john-bodley Jan 12, 2022

Choose a reason for hiding this comment

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

@villebro I added a TODO. Note that sqlparse is pinned in setup.py here for other reasons—as already documented.

superset/sql_parse.py Outdated Show resolved Hide resolved
@etr2460
Copy link
Member

etr2460 commented Jan 11, 2022

It might also be worthwhile considering adding a unit test for this

@villebro there's a unit test already added

@villebro
Copy link
Member

It might also be worthwhile considering adding a unit test for this

villebro there's a unit test already added

@etr2460 🤦 Right you are, not sure how I missed that. Thanks for setting me straight!

Copy link
Member

@villebro villebro left a comment

Choose a reason for hiding this comment

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

Approving, as my comments were mostly non-blocking suggestions

@john-bodley john-bodley merged commit 63ca09e into apache:master Jan 12, 2022
@john-bodley john-bodley deleted the john-bodley--monkey-patch-sqlparse-issue-652 branch January 12, 2022 01:05
shcoderAlex pushed a commit to casual-precision/superset that referenced this pull request Feb 7, 2022
* fix: Workaround for sqlparse issue apache#652

* Update superset/sql_parse.py

Co-authored-by: Ville Brofeldt <[email protected]>

* Update sql_parse.py

Co-authored-by: John Bodley <[email protected]>
Co-authored-by: Ville Brofeldt <[email protected]>
bwang221 pushed a commit to casual-precision/superset that referenced this pull request Feb 10, 2022
* fix: Workaround for sqlparse issue apache#652

* Update superset/sql_parse.py

Co-authored-by: Ville Brofeldt <[email protected]>

* Update sql_parse.py

Co-authored-by: John Bodley <[email protected]>
Co-authored-by: Ville Brofeldt <[email protected]>
@mistercrunch mistercrunch added 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 1.5.0 labels Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels size/S 🚢 1.5.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants