Skip to content

Commit 8385df9

Browse files
committed
Fix ALTER WAREHOUSE query in TPC-H
1 parent 1201ba0 commit 8385df9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

snowgraph/tpch-example.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ USE DATABASE Neo4j_GDS;
126126

127127
-- Next, we want to consider the warehouse that the GDS application will use to execute queries.
128128
-- For this example a MEDIUM size warehouse, so we configure the application's warehouse accordingly
129-
ALTER WAREHOUSE Neo4j_GDS_app_warehouse
130-
WAREHOUSE_SIZE='MEDIUM';
129+
ALTER WAREHOUSE Neo4j_GDS_app_warehouse SET WAREHOUSE_SIZE='MEDIUM';
131130
-- A highly performant warehouse will speed up graph projections but does not affect algorithm computation.
132131
-- It can therefore be a good idea to alter the warehouse size and make other configuration changes to increase performance when projecting larger amounts of data.
133132
-- The warehouse can then be brought back to a less expensive configuration after the projection is done.

0 commit comments

Comments
 (0)