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

feat: method for dynamic allows_alias_in_select #25882

Merged
merged 2 commits into from
Nov 7, 2023
Merged

Conversation

betodealmeida
Copy link
Member

SUMMARY

DB engine specs have an attribute called allows_alias_in_select, indicating if they support aliases in SELECT statements. For Dremio, this attribute is version dependent — see the fix in their release notes.

Because of that, we've been ping-ponging on the attribute. First I disabled it in #23872, and later it was re-enabled in #25657 when the fix came out. Since we have Superset users running older versions, I added a new class method get_allows_alias_in_select, that uses the version field in the database extra configuration.

Note that this requires users running Dremio < 24.1.0 to explicitly add the version field when configuring their databases. I'm not sure if we could determine the version at runtime, but even if we could it would require us to run a pre-query every time, which is needlessly expensive.

Also note that the version field is already used in Presto for version-dependent features.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

N/A

TESTING INSTRUCTIONS

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

@betodealmeida betodealmeida changed the title feat: method for dynamic allows_alias_in_select feat: method for dynamic allows_alias_in_select Nov 6, 2023
@@ -765,7 +765,7 @@ def db_engine_spec(self) -> builtins.type["BaseEngineSpec"]:
raise NotImplementedError()

@property
def database(self) -> builtins.type["Database"]:
Copy link
Member Author

Choose a reason for hiding this comment

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

This was wrong, but was hidden by a bunch of # type: ignore comments. ☹️

Copy link
Member

@john-bodley john-bodley left a comment

Choose a reason for hiding this comment

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

LGTM

@betodealmeida betodealmeida merged commit 80caba3 into master Nov 7, 2023
54 checks passed
jinghua-qa pushed a commit to preset-io/superset that referenced this pull request Nov 8, 2023
josedev-union pushed a commit to Ortege-xyz/studio that referenced this pull request Jan 22, 2024
cccs-rc pushed a commit to CybercentreCanada/superset that referenced this pull request Mar 6, 2024
@mistercrunch mistercrunch added 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 3.1.0 labels Mar 8, 2024
sfirke pushed a commit to sfirke/superset that referenced this pull request Mar 22, 2024
@mistercrunch mistercrunch deleted the sc-76228 branch March 26, 2024 18:06
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 preset:2023.45 size/M 🚢 3.1.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants