Skip to content

Conversation

@DQinYuan
Copy link

For issue #51

like mysql

CREATE TABLE `table10_int_autoinc` (
   `col_float_key` float, 
   `col_time_key` time, 
   pk integer auto_increment,  
   key (`col_float_key`), 
   key (`col_time_key`), 
   primary key (pk))

will be equivalent to

CREATE TABLE `table10_int_autoinc` (
   `col_float_key` float, 
   `col_time_key` time, 
   pk integer auto_increment,  
   key `col_float_key` (`col_float_key`), 
   key `col_float_key`  (`col_time_key`), 
   primary key (pk))

and

CREATE TABLE `table10_int_autoinc` (
   `col_float_key` float, 
   `col_time_key` time, 
   pk integer auto_increment,  
   key (`col_float_key`, `col_time_key`), 
   primary key (pk))

will equivalent to

CREATE TABLE `table10_int_autoinc` (
   `col_float_key` float, 
   `col_time_key` time, 
   pk integer auto_increment,  
   key `col_float_key`  (`col_float_key`, `col_time_key`), 
   primary key (pk))

@coveralls
Copy link

coveralls commented Jul 31, 2019

Coverage Status

Coverage decreased (-0.6%) to 88.141% when pulling 70e29e6 on DQinYuan:master into 1203878 on xwb1989:master.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants