Skip to content

Commit c8eafb4

Browse files
cockroach-teamcityrail
authored andcommitted
release: released CockroachDB version v25.4.0-alpha.1. Next version: v25.4.0-alpha.2
Release note: None Epic: None Release justification: non-production (release infra) change.
1 parent 1572ff3 commit c8eafb4

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

pkg/build/version.txt

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

pkg/sql/logictest/testdata/logic_test/array

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

17291729
# Create an indexes on a bad type.
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/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
17311731
CREATE TABLE tbad (x GEOGRAPHY[] PRIMARY KEY)
17321732

17331733
# 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
@@ -456,7 +456,7 @@ query T noticetrace
456456
SET CLUSTER SETTING sql.ttl.default_delete_rate_limit = 90;
457457
----
458458
NOTICE: The TTL rate limit is per node per table.
459-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
459+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.4/row-level-ttl#ttl-storage-parameters
460460

461461
statement ok
462462
SET CLUSTER SETTING sql.ttl.default_delete_rate_limit = 100;
@@ -465,7 +465,7 @@ query T noticetrace
465465
SET CLUSTER SETTING sql.ttl.default_select_rate_limit = 100;
466466
----
467467
NOTICE: The TTL rate limit is per node per table.
468-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
468+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.4/row-level-ttl#ttl-storage-parameters
469469

470470
statement ok
471471
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
@@ -1233,7 +1233,7 @@ CREATE TABLE create_table_index_elem_duplicate_storage_params_e (
12331233

12341234
subtest end
12351235

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/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
12371237
CREATE TABLE not_indexable (COL1 INT PRIMARY KEY, COL2 REFCURSOR, COL3 REFCURSOR, INDEX (COL2, COL3))
12381238

12391239
subtest region_lookup_param

pkg/sql/logictest/testdata/logic_test/geospatial

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

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/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
144144
CREATE TABLE bad_geog_table(bad_pk geography primary key)
145145

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/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
147147
CREATE TABLE bad_geom_table(bad_pk geometry primary key)
148148

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/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
150150
CREATE INDEX geog_idx ON geo_table(geog)
151151

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
153153
CREATE INDEX geom_idx ON geo_table(geom)
154154

155155
statement ok

pkg/sql/logictest/testdata/logic_test/notice

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ UNLISTEN temp
6464
----
6565
NOTICE: unimplemented: CRDB does not support LISTEN, making UNLISTEN a no-op
6666
HINT: You have attempted to use a feature that is not yet implemented.
67-
See: https://go.crdb.dev/issue-v/41522/dev
67+
See: https://go.crdb.dev/issue-v/41522/v25.4
6868
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
@@ -907,7 +907,7 @@ CREATE TABLE tbl_set_ttl_params (
907907
)
908908
----
909909
NOTICE: The TTL rate limit is per node per table.
910-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
910+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.4/row-level-ttl#ttl-storage-parameters
911911

912912
onlyif config schema-locked-disabled
913913
query T
@@ -934,7 +934,7 @@ query T noticetrace
934934
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')
935935
----
936936
NOTICE: The TTL rate limit is per node per table.
937-
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/dev/row-level-ttl#ttl-storage-parameters
937+
DETAIL: See the documentation for additional details: https://www.cockroachlabs.com/docs/v25.4/row-level-ttl#ttl-storage-parameters
938938

939939
onlyif config local-read-committed local-repeatable-read
940940
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.4/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
@@ -359,7 +359,7 @@ statement error column c has type vector, which is only allowed as the last colu
359359
CREATE TABLE t (a INT PRIMARY KEY, b INT, c VECTOR(3), VECTOR INDEX (c, b))
360360

361361
# 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
363363
CREATE TABLE t (a INT PRIMARY KEY, b TSVECTOR, c VECTOR(3), VECTOR INDEX (b, c))
364364

365365
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
419419
CREATE VECTOR INDEX ON vec_errors (vec1, b)
420420

421421
# 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
423423
CREATE VECTOR INDEX ON vec_errors (c, vec1)
424424

425425
statement error pq: a vector index does not support the DESC option

pkg/sql/pgwire/testdata/pgtest/multiple_active_portals

Lines changed: 7 additions & 7 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.4"}
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.4"}
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.4"}
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.4"}
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.4"}
961961
{"Type":"ReadyForQuery","TxStatus":"E"}
962962

963963
send
@@ -1494,7 +1494,7 @@ ReadyForQuery
14941494
----
14951495
{"Type":"ParseComplete"}
14961496
{"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"}
14981498
{"Type":"ReadyForQuery","TxStatus":"I"}
14991499

15001500
# If calling this procedure without `"MaxRows": 100` (i.e. make it a non-pausable portal),
@@ -1600,7 +1600,7 @@ ReadyForQuery
16001600
{"Type":"ParseComplete"}
16011601
{"Type":"BindComplete"}
16021602
{"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"}
16041604
{"Type":"ReadyForQuery","TxStatus":"I"}
16051605

16061606
# Both PG and CRDB allows procedure with non-pausable portal.

0 commit comments

Comments
 (0)