test_sql_banned_operations.py (keystone-19.0.0) | : | test_sql_banned_operations.py (keystone-19.0.1) | ||
---|---|---|---|---|
skipping to change at line 257 | skipping to change at line 257 | |||
2, | 2, | |||
# NOTE(lbragstad): The expand 003 migration alters the credential table | # NOTE(lbragstad): The expand 003 migration alters the credential table | |||
# to make `blob` nullable. This allows the triggers added in 003 to | # to make `blob` nullable. This allows the triggers added in 003 to | |||
# catch writes when the `blob` attribute isn't populated. We do this so | # catch writes when the `blob` attribute isn't populated. We do this so | |||
# that the triggers aren't aware of the encryption implementation. | # that the triggers aren't aware of the encryption implementation. | |||
3, | 3, | |||
# Migration 004 changes the password created_at column type, from | # Migration 004 changes the password created_at column type, from | |||
# timestamp to datetime and updates the initial value in the contract | # timestamp to datetime and updates the initial value in the contract | |||
# phase. Adding an exception here to pass expand banned tests, | # phase. Adding an exception here to pass expand banned tests, | |||
# otherwise fails. | # otherwise fails. | |||
4 | 4, | |||
# Migration 79 changes a varchar column length, doesn't | ||||
# convert the data within that column/table and doesn't rebuild | ||||
# indexes. | ||||
79 | ||||
] | ] | |||
def setUp(self): | def setUp(self): | |||
super(TestKeystoneExpandSchemaMigrations, self).setUp() | super(TestKeystoneExpandSchemaMigrations, self).setUp() | |||
class TestKeystoneExpandSchemaMigrationsMySQL( | class TestKeystoneExpandSchemaMigrationsMySQL( | |||
db_fixtures.OpportunisticDBTestMixin, | db_fixtures.OpportunisticDBTestMixin, | |||
test_base.BaseTestCase, | test_base.BaseTestCase, | |||
TestKeystoneExpandSchemaMigrations): | TestKeystoneExpandSchemaMigrations): | |||
FIXTURE = db_fixtures.MySQLOpportunisticFixture | FIXTURE = db_fixtures.MySQLOpportunisticFixture | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 6 lines changed or added |