Skip to content

Commit 642d64a

Browse files
authored
Merge SQL schema changes for 1.16 release (#2661)
1 parent e660403 commit 642d64a

File tree

8 files changed

+8
-22
lines changed

8 files changed

+8
-22
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"CurrVersion": "1.8",
33
"MinCompatibleVersion": "1.0",
4-
"Description": "drop unused tasks table",
4+
"Description": "drop unused tasks table; expand VARCHAR columns governed by maxIDLength to VARCHAR(255)",
55
"SchemaUpdateCqlFiles": [
6-
"drop_unused_tasks_table.sql"
6+
"drop_unused_tasks_table.sql",
7+
"alter_columns.sql"
78
]
89
}

schema/mysql/v57/temporal/versioned/v1.9/manifest.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

schema/mysql/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ package mysql
2727
// NOTE: whenever there is a new database schema update, plz update the following versions
2828

2929
// Version is the MySQL database release version
30-
const Version = "1.9"
30+
const Version = "1.8"
3131

3232
// VisibilityVersion is the MySQL visibility database release version
3333
const VisibilityVersion = "1.1"
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"CurrVersion": "1.8",
33
"MinCompatibleVersion": "1.0",
4-
"Description": "drop unused tasks table",
4+
"Description": "drop unused tasks table; Expand VARCHAR columns governed by maxIDLength to VARCHAR(255)",
55
"SchemaUpdateCqlFiles": [
6-
"drop_unused_tasks_table.sql"
6+
"drop_unused_tasks_table.sql",
7+
"alter_columns.sql"
78
]
89
}

schema/postgresql/v96/temporal/versioned/v1.9/manifest.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

schema/postgresql/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ package postgresql
2828

2929
// Version is the Postgres database release version
3030
// Temporal supports both MySQL and Postgres officially, so upgrade should be performed for both MySQL and Postgres
31-
const Version = "1.9"
31+
const Version = "1.8"
3232

3333
// VisibilityVersion is the Postgres visibility database release version
3434
// Temporal supports both MySQL and Postgres officially, so upgrade should be performed for both MySQL and Postgres

0 commit comments

Comments
 (0)