Skip to content

Commit

Permalink
Fix minor typos. (cmu-db#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikezono authored Jul 14, 2022
1 parent ac7960d commit 1fcbffe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/benchmarks/tpcc/ddl-myrocks.sql
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ CREATE TABLE WAREHOUSE (
CREATE INDEX IDX_CUSTOMER_NAME ON CUSTOMER (C_W_ID,C_D_ID,C_LAST,C_FIRST);

-- woohak, add constraints. MySQL/InnoDB storage engine is kind of IoT.
-- and add constraints and make indexes later aretoo slow when running a single thread.
-- and add constraints and make indexes later are too slow when running a single thread.
-- so I just add create index and foreign key constraints before loading data.

-- already created
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/benchmarks/tpcc/ddl-singlestore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ CREATE TABLE WAREHOUSE (
CREATE INDEX IDX_CUSTOMER_NAME ON CUSTOMER (C_W_ID,C_D_ID,C_LAST,C_FIRST);

-- woohak, add constraints. MySQL/InnoDB storage engine is kind of IoT.
-- and add constraints and make indexes later aretoo slow when running a single thread.
-- and add constraints and make indexes later are too slow when running a single thread.
-- so I just add create index and foreign key constraints before loading data.

-- already created
Expand Down

0 comments on commit 1fcbffe

Please sign in to comment.