Skip to content

Commit

Permalink
Fix MySQL/MariaDB TPROC-H build FK error
Browse files Browse the repository at this point in the history
  • Loading branch information
sm-shaw committed Sep 15, 2023
1 parent 3b2b9cd commit 0bcac60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mariadb/mariaolap.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ proc GenerateTableQueries { maria_tpch_storage_engine } {
set queries {}
lset queries 0 "CREATE TABLE `ORDERS` (
`O_ORDERDATE` DATE NULL,
`O_ORDERKEY` INT NOT NULL,
`O_ORDERKEY` BIGINT NOT NULL,
`O_CUSTKEY` INT NOT NULL,
`O_ORDERPRIORITY` CHAR(15) BINARY NULL,
`O_SHIPPRIORITY` INT NULL,
Expand Down
2 changes: 1 addition & 1 deletion src/mysql/mysqlolap.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ proc CreateTables { mysql_handler mysql_tpch_storage_engine } {
puts "CREATING TPCH TABLES"
set sql(1) "CREATE TABLE `ORDERS` (
`O_ORDERDATE` DATE NULL,
`O_ORDERKEY` INT NOT NULL,
`O_ORDERKEY` BIGINT NOT NULL,
`O_CUSTKEY` INT NOT NULL,
`O_ORDERPRIORITY` CHAR(15) BINARY NULL,
`O_SHIPPRIORITY` INT NULL,
Expand Down

0 comments on commit 0bcac60

Please sign in to comment.