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/v26.1/inverted-indexes.html
statement notice NOTICE: using sequential values in a primary key does not perform as well as using random UUIDs. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(dev)/serial.html
651
+
statement notice NOTICE: using sequential values in a primary key does not perform as well as using random UUIDs. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(v26.1)/serial.html
652
652
CREATE TABLE serial_test1 (id INT PRIMARY KEY DEFAULT nextval('serial_test_sequence'), temp string)
653
653
654
-
statement notice NOTICE: using sequential values in a primary key does not perform as well as using random UUIDs. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(dev)/serial.html
654
+
statement notice NOTICE: using sequential values in a primary key does not perform as well as using random UUIDs. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(v26.1)/serial.html
655
655
CREATE TABLE serial_test2 (id SERIAL PRIMARY KEY, temp string)
656
656
657
-
statement notice NOTICE: using sequential values in a primary key does not perform as well as using random UUIDs. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(dev)/serial.html
657
+
statement notice NOTICE: using sequential values in a primary key does not perform as well as using random UUIDs. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(v26.1)/serial.html
658
658
CREATE TABLE serial_test3 (id SERIAL, temp string, PRIMARY KEY (id))
659
659
660
-
statement notice NOTICE: upgrading the column id to INT8 to utilize the session serial_normalization setting\nHINT: change the serial_normalization to sql_sequence or sql_sequence_cached if you wish to use a smaller sized serial column at the cost of performance. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(dev)/serial.html
660
+
statement notice NOTICE: upgrading the column id to INT8 to utilize the session serial_normalization setting\nHINT: change the serial_normalization to sql_sequence or sql_sequence_cached if you wish to use a smaller sized serial column at the cost of performance. See https://www.cockroachlabs.com/docs/(v\d+\.\d+)|(v26.1)/serial.html
661
661
CREATE TABLE serial_test4 (id SERIAL4, temp string)
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/v26.1
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/v26.1/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/v26.1/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/v26.1/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/v26.1/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/v26.1/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
@@ -346,7 +346,7 @@ statement error column c has type vector, which is only allowed as the last colu
346
346
CREATE TABLE t (a INT PRIMARY KEY, b INT, c VECTOR(3), VECTOR INDEX (c, b))
347
347
348
348
# Try to use inverted indexable type in vector index.
349
-
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
349
+
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/v26.1/inverted-indexes.html
350
350
CREATE TABLE t (a INT PRIMARY KEY, b TSVECTOR, c VECTOR(3), VECTOR INDEX (b, c))
351
351
352
352
statement error pq: a vector index does not support the ASC option
@@ -406,7 +406,7 @@ statement error column vec1 has type vector, which is only allowed as the last c
406
406
CREATE VECTOR INDEX ON vec_errors (vec1, b)
407
407
408
408
# Try to use inverted indexable type in vector index.
409
-
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
409
+
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/v26.1/inverted-indexes.html
410
410
CREATE VECTOR INDEX ON vec_errors (c, vec1)
411
411
412
412
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/v26.1"}
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/v26.1"}
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/v26.1"}
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/v26.1"}
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/v26.1"}
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/v26.1"}
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/v26.1"}
1604
1604
{"Type":"ReadyForQuery","TxStatus":"I"}
1605
1605
1606
1606
# Both PG and CRDB allows procedure with non-pausable portal.
0 commit comments