diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/regress/expected/cluster.out | 2 | ||||
-rw-r--r-- | src/test/regress/sql/cluster.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/cluster.out b/src/test/regress/expected/cluster.out index aa8e967269d..a9fca4d8fea 100644 --- a/src/test/regress/expected/cluster.out +++ b/src/test/regress/expected/cluster.out @@ -329,7 +329,7 @@ INSERT INTO clstr_3 VALUES (1); CLUSTER clstr_2; ERROR: there is no previously clustered index for table "clstr_2" CLUSTER clstr_1_pkey ON clstr_1; -CLUSTER clstr_2_pkey ON clstr_2; +CLUSTER clstr_2 USING clstr_2_pkey; SELECT * FROM clstr_1 UNION ALL SELECT * FROM clstr_2 UNION ALL SELECT * FROM clstr_3; diff --git a/src/test/regress/sql/cluster.sql b/src/test/regress/sql/cluster.sql index db300b19981..81a52c23dfa 100644 --- a/src/test/regress/sql/cluster.sql +++ b/src/test/regress/sql/cluster.sql @@ -122,7 +122,7 @@ INSERT INTO clstr_3 VALUES (1); CLUSTER clstr_2; CLUSTER clstr_1_pkey ON clstr_1; -CLUSTER clstr_2_pkey ON clstr_2; +CLUSTER clstr_2 USING clstr_2_pkey; SELECT * FROM clstr_1 UNION ALL SELECT * FROM clstr_2 UNION ALL SELECT * FROM clstr_3; |