Skip to content

Commit e9d418a

Browse files
committed
fix
1 parent ce45044 commit e9d418a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

ydb/library/workload/stock/stock.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,6 @@ std::string TStockWorkloadGenerator::GetDDLQueries() const {
104104
{4}
105105
)", DbPath, stockPartitionsDdl, ordersPartitionsDdl, orderLinesPartitionsDdl, changefeeds);
106106
} else if (Params.TableType == "column") {
107-
Cerr << std::format(R"(--!syntax_v1
108-
CREATE TABLE `{0}/stock`(product Utf8 NOT NULL, quantity Int64, PRIMARY KEY(product)) {1};
109-
CREATE TABLE `{0}/orders`(id Uint64 NOT NULL, customer Utf8, created Datetime, processed Datetime, PRIMARY KEY(id)) {2};
110-
CREATE TABLE `{0}/orderLines`(id_order Uint64 NOT NULL, product Utf8 NOT NULL, quantity Int64, PRIMARY KEY(id_order, product)) {3};
111-
{4}
112-
)", DbPath, stockPartitionsDdl, ordersPartitionsDdl, orderLinesPartitionsDdl, changefeeds) << Endl;
113107
return std::format(R"(--!syntax_v1
114108
CREATE TABLE `{0}/stock`(product Utf8 NOT NULL, quantity Int64, PRIMARY KEY(product)) {1};
115109
CREATE TABLE `{0}/orders`(id Uint64 NOT NULL, customer Utf8, created Datetime, processed Datetime, PRIMARY KEY(id)) {2};

0 commit comments

Comments
 (0)