Skip to content

Commit

Permalink
Deprecate mysql_key_block_size
Browse files Browse the repository at this point in the history
Fixes #45
  • Loading branch information
earthgecko committed Mar 24, 2018
1 parent b5033aa commit bb0de25
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions skyline/ionosphere_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@ def create_features_profile(current_skyline_app, requested_timestamp, data_for_m
Column('feature_id', Integer, nullable=False),
Column('value', DOUBLE(), nullable=True),
mysql_charset='utf8',
mysql_key_block_size='255',
# @modified 20180324 - Bug #2340: MySQL key_block_size
# MySQL key_block_size #45
# Removed as under MySQL 5.7 breaks
# mysql_key_block_size='255',
mysql_engine='InnoDB')
fp_metric_table.create(engine, checkfirst=True)
fp_table_created = True
Expand Down Expand Up @@ -699,7 +702,10 @@ def create_features_profile(current_skyline_app, requested_timestamp, data_for_m
Column('timestamp', Integer, nullable=False),
Column('value', DOUBLE(), nullable=True),
mysql_charset='utf8',
mysql_key_block_size='255',
# @modified 20180324 - Bug #2340: MySQL key_block_size
# MySQL key_block_size #45
# Removed as under MySQL 5.7 breaks
# mysql_key_block_size='255',
mysql_engine='InnoDB')
ts_metric_table.create(engine, checkfirst=True)
# ts_table_created = True
Expand Down

0 comments on commit bb0de25

Please sign in to comment.