File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ public function it_adds_a_sort_key_with_with_statement()
105
105
106
106
$ this ->assertCreateStatement (
107
107
$ blueprint ,
108
- 'create table `test` (`name` varchar(255) not null, sort key(`name`) with (columnstore_segment_rows=100000)) '
108
+ 'create table `test` (`name` varchar(255) not null, sort key(`name` asc ) with (columnstore_segment_rows=100000)) '
109
109
);
110
110
}
111
111
@@ -118,7 +118,7 @@ public function it_adds_a_sort_key_fluent_with_with_statement()
118
118
119
119
$ this ->assertCreateStatement (
120
120
$ blueprint ,
121
- 'create table `test` (`name` varchar(255) not null, sort key(`name`) with (columnstore_segment_rows=100000)) '
121
+ 'create table `test` (`name` varchar(255) not null, sort key(`name` asc ) with (columnstore_segment_rows=100000)) '
122
122
);
123
123
}
124
124
@@ -134,7 +134,7 @@ public function it_adds_a_sort_key_fluent_with_dual_with_statement()
134
134
135
135
$ this ->assertCreateStatement (
136
136
$ blueprint ,
137
- 'create table `test` (`name` varchar(255) not null, sort key(`name`) with (columnstore_segment_rows=100000,columnstore_flush_bytes=4194304)) '
137
+ 'create table `test` (`name` varchar(255) not null, sort key(`name` asc ) with (columnstore_segment_rows=100000,columnstore_flush_bytes=4194304)) '
138
138
);
139
139
}
140
140
}
You can’t perform that action at this time.
0 commit comments