-
Notifications
You must be signed in to change notification settings - Fork 14.2k
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
Field names in big query can contain only alphanumeric and underscore #5641
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5641 +/- ##
==========================================
- Coverage 63.49% 63.49% -0.01%
==========================================
Files 360 360
Lines 22914 22926 +12
Branches 2551 2551
==========================================
+ Hits 14550 14556 +6
- Misses 8349 8355 +6
Partials 15 15
Continue to review full report at Codecov.
|
As per your recommendation @mistercrunch found a better place for mutating label. PTAL |
@sumedhsakdeo you have linting errors on the line that's very long |
…apache#5641) * Field names in big query can contain only alphanumeric and underscore * bad quote * better place for mutating labels * lint * bug fix thanks to mistercrunch * lint * lint again (cherry picked from commit 80e7778)
…apache#5641) * Field names in big query can contain only alphanumeric and underscore * bad quote * better place for mutating labels * lint * bug fix thanks to mistercrunch * lint * lint again (cherry picked from commit 80e7778)
…apache#5641) * Field names in big query can contain only alphanumeric and underscore * bad quote * better place for mutating labels * lint * bug fix thanks to mistercrunch * lint * lint again
When we try to use explore view to plot charts against a BigQuery dataset, superset was used some characters in the field name which BigQuery syntax did not like.
Here, is the error returned by BigQuery
Invalid field name "AVG(lat)". Fields must contain only letters, numbers, and underscores, start with a letter or underscore, and be at most 128 characters long
This PR, fixes this issue so that we can plot charts against big query dataset.