forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
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 apache#29 from john-bodley/john-bodley-cherry-pick…
…-4551-4655 John bodley cherry pick 4551 4655
- Loading branch information
Showing
12 changed files
with
241 additions
and
59 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
30 changes: 30 additions & 0 deletions
30
superset/migrations/versions/e68c4473c581_allow_multi_schema_metadata_fetch.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,30 @@ | ||
"""allow_multi_schema_metadata_fetch | ||
Revision ID: e68c4473c581 | ||
Revises: e866bd2d4976 | ||
Create Date: 2018-03-06 12:24:30.896293 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'e68c4473c581' | ||
down_revision = 'e866bd2d4976' | ||
|
||
|
||
def upgrade(): | ||
|
||
op.add_column( | ||
'dbs', | ||
sa.Column( | ||
'allow_multi_schema_metadata_fetch', | ||
sa.Boolean(), | ||
nullable=True, | ||
default=True, | ||
), | ||
) | ||
|
||
|
||
def downgrade(): | ||
op.drop_column('dbs', 'allow_multi_schema_metadata_fetch') |
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,72 @@ | ||
"""empty message | ||
Revision ID: f231d82b9b26 | ||
Revises: e68c4473c581 | ||
Create Date: 2018-03-20 19:47:54.991259 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'f231d82b9b26' | ||
down_revision = 'e68c4473c581' | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.exc import OperationalError | ||
|
||
from superset.utils import generic_find_uq_constraint_name | ||
|
||
conv = { | ||
'uq': 'uq_%(table_name)s_%(column_0_name)s', | ||
} | ||
|
||
names = { | ||
'columns': 'column_name', | ||
'metrics': 'metric_name', | ||
} | ||
|
||
bind = op.get_bind() | ||
insp = sa.engine.reflection.Inspector.from_engine(bind) | ||
|
||
|
||
def upgrade(): | ||
|
||
# Reduce the size of the metric_name column for constraint viability. | ||
with op.batch_alter_table('metrics', naming_convention=conv) as batch_op: | ||
batch_op.alter_column( | ||
'metric_name', | ||
existing_type=sa.String(length=512), | ||
type_=sa.String(length=255), | ||
existing_nullable=True, | ||
) | ||
|
||
# Add the missing uniqueness constraints. | ||
for table, column in names.items(): | ||
with op.batch_alter_table(table, naming_convention=conv) as batch_op: | ||
batch_op.create_unique_constraint( | ||
'uq_{}_{}'.format(table, column), | ||
[column, 'datasource_id'], | ||
) | ||
|
||
def downgrade(): | ||
|
||
# Restore the size of the metric_name column. | ||
with op.batch_alter_table('metrics', naming_convention=conv) as batch_op: | ||
batch_op.alter_column( | ||
'metric_name', | ||
existing_type=sa.String(length=255), | ||
type_=sa.String(length=512), | ||
existing_nullable=True, | ||
) | ||
|
||
# Remove the previous missing uniqueness constraints. | ||
for table, column in names.items(): | ||
with op.batch_alter_table(table, naming_convention=conv) as batch_op: | ||
batch_op.drop_constraint( | ||
generic_find_uq_constraint_name( | ||
table, | ||
{column, 'datasource_id'}, | ||
insp, | ||
) or 'uq_{}_{}'.format(table, column), | ||
type_='unique', | ||
) |
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
Oops, something went wrong.