This repository was archived by the owner on Nov 3, 2023. It is now read-only.
forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from michellethomas/mt_cherry_pick_may_merge_f…
…ixes Cherry picking fixes for may merge
- Loading branch information
Showing
8 changed files
with
90 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
superset/migrations/versions/c5756bec8b47_time_grain_sqla.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
"""Time grain SQLA | ||
Revision ID: c5756bec8b47 | ||
Revises: e502db2af7be | ||
Create Date: 2018-06-04 11:12:59.878742 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'c5756bec8b47' | ||
down_revision = 'e502db2af7be' | ||
|
||
from alembic import op | ||
import json | ||
from sqlalchemy.ext.declarative import declarative_base | ||
from sqlalchemy import Column, Integer, String, Text | ||
|
||
from superset import db | ||
|
||
Base = declarative_base() | ||
|
||
|
||
class Slice(Base): | ||
__tablename__ = 'slices' | ||
|
||
id = Column(Integer, primary_key=True) | ||
datasource_type = Column(String(200)) | ||
slice_name = Column(String(250)) | ||
params = Column(Text) | ||
|
||
|
||
def upgrade(): | ||
bind = op.get_bind() | ||
session = db.Session(bind=bind) | ||
|
||
for slc in session.query(Slice).all(): | ||
try: | ||
params = json.loads(slc.params) | ||
|
||
if params.get('time_grain_sqla') == 'Time Column': | ||
params['time_grain_sqla'] = None | ||
slc.params = json.dumps(params, sort_keys=True) | ||
except Exception: | ||
pass | ||
|
||
session.commit() | ||
session.close() | ||
|
||
|
||
def downgrade(): | ||
bind = op.get_bind() | ||
session = db.Session(bind=bind) | ||
|
||
for slc in session.query(Slice).all(): | ||
try: | ||
params = json.loads(slc.params) | ||
|
||
if params.get('time_grain_sqla') is None: | ||
params['time_grain_sqla'] = 'Time Column' | ||
slc.params = json.dumps(params, sort_keys=True) | ||
except Exception: | ||
pass | ||
|
||
session.commit() | ||
session.close() |