Skip to content

Commit 27039a7

Browse files
authored
Update roundtrip_column.cpp
1 parent 3d377bf commit 27039a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ut/roundtrip_column.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ColumnRef RoundtripColumnValues(Client& client, ColumnRef expected) {
3737
const std::string type_name = result->GetType().GetName();
3838
client.Execute("DROP TEMPORARY TABLE IF EXISTS temporary_roundtrip_table;");
3939
// id column is to have the same order of rows on SELECT
40-
client.Execute("CREATE TEMPORARY TABLE IF NOT EXISTS temporary_roundtrip_table (id UInt32, col " + type_name + ") Engine=MergeTree() ORDER BY id;");
40+
client.Execute("CREATE TEMPORARY TABLE IF NOT EXISTS temporary_roundtrip_table (id UInt32, col " + type_name + ");");
4141
{
4242
Block block;
4343
block.AppendColumn("col", expected);

0 commit comments

Comments
 (0)