Skip to content

Commit aa879a1

Browse files
committed
Fix tests
1 parent 72758db commit aa879a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Hybrid/CreateTable/SortKeysTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function it_adds_a_sort_key_with_with_statement()
105105

106106
$this->assertCreateStatement(
107107
$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))'
109109
);
110110
}
111111

@@ -118,7 +118,7 @@ public function it_adds_a_sort_key_fluent_with_with_statement()
118118

119119
$this->assertCreateStatement(
120120
$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))'
122122
);
123123
}
124124

@@ -134,7 +134,7 @@ public function it_adds_a_sort_key_fluent_with_dual_with_statement()
134134

135135
$this->assertCreateStatement(
136136
$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))'
138138
);
139139
}
140140
}

0 commit comments

Comments
 (0)