Skip to content

Commit 9edb174

Browse files
committed
Fix review comments and adding newline to the end of each file
1 parent b7364f3 commit 9edb174

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+54
-54
lines changed

benchmarks/tpch-load/create-table/customer.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ CREATE TABLE customer (
88
acctbal DECIMAL(12,2) NOT NULL,
99
mktsegment VARCHAR(10) NOT NULL,
1010
comment VARCHAR(117) NOT NULL
11-
) WITH (format = 'PARQUET');
11+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/lineitem.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ CREATE TABLE lineitem (
1616
shipinstruct VARCHAR(25) NOT NULL,
1717
shipmode VARCHAR(10) NOT NULL,
1818
comment VARCHAR(44) NOT NULL
19-
) WITH (format = 'PARQUET');
19+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/nation.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ CREATE TABLE nation (
44
name VARCHAR(25) NOT NULL,
55
regionkey BIGINT NOT NULL,
66
comment VARCHAR(152) NOT NULL
7-
) WITH (format = 'PARQUET');
7+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/orders.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ CREATE TABLE orders (
99
clerk VARCHAR(15) NOT NULL,
1010
shippriority BIGINT NOT NULL,
1111
comment VARCHAR(79) NOT NULL
12-
) WITH (format = 'PARQUET');
12+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/part.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ CREATE TABLE part (
99
container VARCHAR(10) NOT NULL,
1010
retailprice DECIMAL(12,2) NOT NULL,
1111
comment VARCHAR(23) NOT NULL
12-
) WITH (format = 'PARQUET');
12+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/partsupp.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ CREATE TABLE partsupp (
55
availqty BIGINT NOT NULL,
66
supplycost DECIMAL(12,2) NOT NULL,
77
comment VARCHAR(199) NOT NULL
8-
) WITH (format = 'PARQUET');
8+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/region.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ CREATE TABLE region (
33
regionkey BIGINT NOT NULL,
44
name VARCHAR(25) NOT NULL,
55
comment VARCHAR(152) NOT NULL
6-
) WITH (format = 'PARQUET');
6+
) WITH (format = 'PARQUET');

benchmarks/tpch-load/create-table/supplier.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ CREATE TABLE supplier (
77
phone VARCHAR(15) NOT NULL,
88
acctbal DECIMAL(12,2) NOT NULL,
99
comment VARCHAR(101) NOT NULL
10-
) WITH (format = 'PARQUET');
10+
) WITH (format = 'PARQUET');
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DROP TABLE customer;
1+
DROP TABLE customer;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DROP TABLE lineitem;
1+
DROP TABLE lineitem;

0 commit comments

Comments
 (0)