Skip to content

Commit 83345c9

Browse files
craig[bot]cockroach-teamcityrail
committed
Merge #147986
147986: release: released CockroachDB version 25.3.0-alpha.1. Next version: 25.3.0-alpha.2 r=fqazi a=cockroach-teamcity Release note: None Epic: None Release justification: non-production (release infra) change. Co-authored-by: Justin Beaver <[email protected]> Co-authored-by: Rail Aliiev <[email protected]>
2 parents b1ae7bb + 67cf408 commit 83345c9

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

pkg/build/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v25.3.0-alpha.1
1+
v25.3.0-alpha.2

pkg/sql/logictest/testdata/logic_test/array

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1726,7 +1726,7 @@ statement error duplicate key value violates unique constraint
17261726
CREATE UNIQUE INDEX ON unique_array(b)
17271727

17281728
# Create an indexes on a bad type.
1729-
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
1729+
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.3/inverted-indexes.html
17301730
CREATE TABLE tbad (x GEOGRAPHY[] PRIMARY KEY)
17311731

17321732
# Test arrays of composite types.

pkg/sql/logictest/testdata/logic_test/cluster_settings

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ query T noticetrace
455455
SET CLUSTER SETTING sql.ttl.default_delete_rate_limit = 90;
456456
----
457457
NOTICE: The TTL rate limit is per leaseholder per table.
458-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
458+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.3/row-level-ttl#ttl-storage-parameters
459459

460460
statement ok
461461
SET CLUSTER SETTING sql.ttl.default_delete_rate_limit = 100;
@@ -464,7 +464,7 @@ query T noticetrace
464464
SET CLUSTER SETTING sql.ttl.default_select_rate_limit = 100;
465465
----
466466
NOTICE: The TTL rate limit is per leaseholder per table.
467-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
467+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.3/row-level-ttl#ttl-storage-parameters
468468

469469
statement ok
470470
SET CLUSTER SETTING sql.ttl.default_select_rate_limit = 0;

pkg/sql/logictest/testdata/logic_test/create_table

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,5 +1232,5 @@ CREATE TABLE create_table_index_elem_duplicate_storage_params_e (
12321232

12331233
subtest end
12341234

1235-
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
1235+
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.3
12361236
CREATE TABLE not_indexable (COL1 INT PRIMARY KEY, COL2 REFCURSOR, COL3 REFCURSOR, INDEX (COL2, COL3))

pkg/sql/logictest/testdata/logic_test/geospatial

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,16 +139,16 @@ geog GEOGRAPHY(GEOMETRY,4326) true NULL · {geo_table_geog_idx,geo_table
139139
geom GEOMETRY(POINT) true NULL · {geo_table_geom_idx,geo_table_pkey} false
140140
orphan GEOGRAPHY true NULL · {geo_table_pkey} false
141141

142-
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
142+
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.3/inverted-indexes.html
143143
CREATE TABLE bad_geog_table(bad_pk geography primary key)
144144

145-
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
145+
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.3/inverted-indexes.html
146146
CREATE TABLE bad_geom_table(bad_pk geometry primary key)
147147

148-
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
148+
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.3/inverted-indexes.html
149149
CREATE INDEX geog_idx ON geo_table(geog)
150150

151-
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
151+
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.3/inverted-indexes.html
152152
CREATE INDEX geom_idx ON geo_table(geom)
153153

154154
statement ok

pkg/sql/logictest/testdata/logic_test/notice

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ UNLISTEN temp
6363
----
6464
NOTICE: unimplemented: CRDB does not support LISTEN, making UNLISTEN a no-op
6565
HINT: You have attempted to use a feature that is not yet implemented.
66-
See: https://go.crdb.dev/issue-v/41522/dev
66+
See: https://go.crdb.dev/issue-v/41522/v25.3
6767
SQLSTATE: 0A000

pkg/sql/logictest/testdata/logic_test/row_level_ttl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ CREATE TABLE tbl_set_ttl_params (
891891
)
892892
----
893893
NOTICE: The TTL rate limit is per leaseholder per table.
894-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
894+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.3/row-level-ttl#ttl-storage-parameters
895895

896896
skipif config local-schema-locked
897897
query T
@@ -918,7 +918,7 @@ query T noticetrace
918918
ALTER TABLE tbl_set_ttl_params SET (ttl_select_batch_size = 110, ttl_delete_batch_size = 120, ttl_select_rate_limit = 130, ttl_delete_rate_limit = 140, ttl_row_stats_poll_interval = '2m0s')
919919
----
920920
NOTICE: The TTL rate limit is per leaseholder per table.
921-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
921+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.3/row-level-ttl#ttl-storage-parameters
922922

923923
onlyif config local-read-committed local-repeatable-read
924924
statement ok

pkg/sql/logictest/testdata/logic_test/unimplemented

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE TABLE legacy();
55

66
# Since all the below statements use a common method for the hint and detail part
77
# 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.3/online-schema-changes#declarative-schema-changer
99
CREATE POLICY p1 on legacy;
1010

1111
subtest policy_statements

pkg/sql/logictest/testdata/logic_test/vector_index

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ statement error column c has type vector, which is only allowed as the last colu
340340
CREATE TABLE t (a INT PRIMARY KEY, b INT, c VECTOR(3), VECTOR INDEX (c, b))
341341

342342
# Try to use inverted indexable type in vector index.
343-
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
343+
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.3/inverted-indexes.html
344344
CREATE TABLE t (a INT PRIMARY KEY, b TSVECTOR, c VECTOR(3), VECTOR INDEX (b, c))
345345

346346
statement error the last column in a vector index cannot have the DESC option
@@ -397,7 +397,7 @@ statement error column vec1 has type vector, which is only allowed as the last c
397397
CREATE VECTOR INDEX ON vec_errors (vec1, b)
398398

399399
# Try to use inverted indexable type in vector index.
400-
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
400+
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.3/inverted-indexes.html
401401
CREATE VECTOR INDEX ON vec_errors (c, vec1)
402402

403403
statement error the last column in a vector index cannot have the DESC option

pkg/sql/pgwire/testdata/pgtest/multiple_active_portals

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ ReadyForQuery
468468
{"Type":"PortalSuspended"}
469469
{"Type":"DataRow","Values":[{"text":"2"}]}
470470
{"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.3"}
472472
{"Type":"ReadyForQuery","TxStatus":"E"}
473473

474474
send crdb_only
@@ -515,7 +515,7 @@ ReadyForQuery
515515
{"Type":"BindComplete"}
516516
{"Type":"DataRow","Values":[{"text":"f"}]}
517517
{"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.3"}
519519
{"Type":"ReadyForQuery","TxStatus":"E"}
520520

521521
send crdb_only
@@ -564,7 +564,7 @@ ReadyForQuery
564564
{"Type":"BindComplete"}
565565
{"Type":"DataRow","Values":[{"text":"10"}]}
566566
{"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.3"}
568568
{"Type":"ReadyForQuery","TxStatus":"E"}
569569

570570
send crdb_only
@@ -613,7 +613,7 @@ ReadyForQuery
613613
{"Type":"BindComplete"}
614614
{"Type":"DataRow","Values":[{"text":"1"}]}
615615
{"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.3"}
617617
{"Type":"ReadyForQuery","TxStatus":"E"}
618618

619619
send crdb_only
@@ -957,7 +957,7 @@ ReadyForQuery
957957
{"Type":"PortalSuspended"}
958958
{"Type":"DataRow","Values":[{"text":"10"}]}
959959
{"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.3"}
961961
{"Type":"ReadyForQuery","TxStatus":"E"}
962962

963963
send

0 commit comments

Comments
 (0)