Skip to content

Commit 833e158

Browse files
author
pmasl
committed
Minor change to index creation
1 parent 99fe515 commit 833e158

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

samples/features/intelligent-query-processing/Intelligent QP Demo Setup - Enlarging WideWorldImportersDW.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ GO
3131
CREATE INDEX IX_Stock_Item_Key
3232
ON Fact.OrderHistory([Stock Item Key])
3333
INCLUDE(Quantity)
34-
WITH(DATA_COMPRESSION=PAGE);
34+
WITH (DATA_COMPRESSION = PAGE);
3535
GO
3636

3737
CREATE INDEX IX_OrderHistory_Quantity
3838
ON Fact.OrderHistory([Quantity])
3939
INCLUDE([Order Key])
40-
WITH(DATA_COMPRESSION=PAGE);
40+
WITH (DATA_COMPRESSION = PAGE);
4141
GO
4242

4343
/*

0 commit comments

Comments
 (0)