You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
statement error column x has type geography\[\], which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
1730
+
statement error column x has type geography\[\], which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
statement error pq: unimplemented: column col2 has type refcursor, which is not indexable\nHINT: You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/35730/dev
1236
+
statement error pq: unimplemented: column col2 has type refcursor, which is not indexable\nHINT: You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/35730/v25.4
1237
1237
CREATE TABLE not_indexable (COL1 INT PRIMARY KEY, COL2 REFCURSOR, COL3 REFCURSOR, INDEX (COL2, COL3))
statement error column bad_pk has type geography, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
143
+
statement error column bad_pk has type geography, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
statement error column bad_pk has type geometry, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
146
+
statement error column bad_pk has type geometry, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
statement error column geog has type geography, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
149
+
statement error column geog has type geography, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
150
150
CREATE INDEX geog_idx ON geo_table(geog)
151
151
152
-
statement error column geom has type geometry, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
152
+
statement error column geom has type geometry, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
Copy file name to clipboardExpand all lines: pkg/sql/logictest/testdata/logic_test/unimplemented
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ CREATE TABLE legacy();
5
5
6
6
# Since all the below statements use a common method for the hint and detail part
7
7
# of the error message, we only test this first one with the entire error message.
8
-
statement error pq: CREATE POLICY is only implemented in the declarative schema changer\nHINT: This error may be happening due to running it in a multi-statement transaction. Try sending each schema change statement in its own implicit transaction.\nDETAIL: See the documentation for additional details:https://www.cockroachlabs.com/docs/dev/online-schema-changes#declarative-schema-changer
8
+
statement error pq: CREATE POLICY is only implemented in the declarative schema changer\nHINT: This error may be happening due to running it in a multi-statement transaction. Try sending each schema change statement in its own implicit transaction.\nDETAIL: See the documentation for additional details:https://www.cockroachlabs.com/docs/v25.4/online-schema-changes#declarative-schema-changer
Copy file name to clipboardExpand all lines: pkg/sql/logictest/testdata/logic_test/vector_index
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -359,7 +359,7 @@ statement error column c has type vector, which is only allowed as the last colu
359
359
CREATE TABLE t (a INT PRIMARY KEY, b INT, c VECTOR(3), VECTOR INDEX (c, b))
360
360
361
361
# Try to use inverted indexable type in vector index.
362
-
statement error column b has type tsvector, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
362
+
statement error column b has type tsvector, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
363
363
CREATE TABLE t (a INT PRIMARY KEY, b TSVECTOR, c VECTOR(3), VECTOR INDEX (b, c))
364
364
365
365
statement error pq: a vector index does not support the ASC option
@@ -419,7 +419,7 @@ statement error column vec1 has type vector, which is only allowed as the last c
419
419
CREATE VECTOR INDEX ON vec_errors (vec1, b)
420
420
421
421
# Try to use inverted indexable type in vector index.
422
-
statement error column c has type tsvector, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/dev/inverted-indexes.html
422
+
statement error column c has type tsvector, which is not indexable in a non-inverted index\nHINT: you may want to create an inverted index instead. See the documentation for inverted indexes: https://www.cockroachlabs.com/docs/v25.4/inverted-indexes.html
423
423
CREATE VECTOR INDEX ON vec_errors (c, vec1)
424
424
425
425
statement error pq: a vector index does not support the DESC option
Copy file name to clipboardExpand all lines: pkg/sql/pgwire/testdata/pgtest/multiple_active_portals
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -468,7 +468,7 @@ ReadyForQuery
468
468
{"Type":"PortalSuspended"}
469
469
{"Type":"DataRow","Values":[{"text":"2"}]}
470
470
{"Type":"PortalSuspended"}
471
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
471
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
472
472
{"Type":"ReadyForQuery","TxStatus":"E"}
473
473
474
474
send crdb_only
@@ -515,7 +515,7 @@ ReadyForQuery
515
515
{"Type":"BindComplete"}
516
516
{"Type":"DataRow","Values":[{"text":"f"}]}
517
517
{"Type":"PortalSuspended"}
518
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
518
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
519
519
{"Type":"ReadyForQuery","TxStatus":"E"}
520
520
521
521
send crdb_only
@@ -564,7 +564,7 @@ ReadyForQuery
564
564
{"Type":"BindComplete"}
565
565
{"Type":"DataRow","Values":[{"text":"10"}]}
566
566
{"Type":"PortalSuspended"}
567
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
567
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
568
568
{"Type":"ReadyForQuery","TxStatus":"E"}
569
569
570
570
send crdb_only
@@ -613,7 +613,7 @@ ReadyForQuery
613
613
{"Type":"BindComplete"}
614
614
{"Type":"DataRow","Values":[{"text":"1"}]}
615
615
{"Type":"PortalSuspended"}
616
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
616
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
617
617
{"Type":"ReadyForQuery","TxStatus":"E"}
618
618
619
619
send crdb_only
@@ -957,7 +957,7 @@ ReadyForQuery
957
957
{"Type":"PortalSuspended"}
958
958
{"Type":"DataRow","Values":[{"text":"10"}]}
959
959
{"Type":"PortalSuspended"}
960
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
960
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Detail":"cannot execute a portal while a different one is open","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
961
961
{"Type":"ReadyForQuery","TxStatus":"E"}
962
962
963
963
send
@@ -1494,7 +1494,7 @@ ReadyForQuery
1494
1494
----
1495
1495
{"Type":"ParseComplete"}
1496
1496
{"Type":"BindComplete"}
1497
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
1497
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
1498
1498
{"Type":"ReadyForQuery","TxStatus":"I"}
1499
1499
1500
1500
# If calling this procedure without `"MaxRows": 100` (i.e. make it a non-pausable portal),
@@ -1600,7 +1600,7 @@ ReadyForQuery
1600
1600
{"Type":"ParseComplete"}
1601
1601
{"Type":"BindComplete"}
1602
1602
{"Type":"BindComplete"}
1603
-
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/dev"}
1603
+
{"Type":"ErrorResponse","Code":"0A000","Message":"unimplemented: the statement for a pausable portal must be a read-only SELECT query with no sub-queries or post-queries","Hint":"You have attempted to use a feature that is not yet implemented.\nSee: https://go.crdb.dev/issue-v/98911/v25.4"}
1604
1604
{"Type":"ReadyForQuery","TxStatus":"I"}
1605
1605
1606
1606
# Both PG and CRDB allows procedure with non-pausable portal.
0 commit comments