From 8fa4d3f71dfa3291065d0e183689c3a16dc86002 Mon Sep 17 00:00:00 2001 From: Matt McShane Date: Mon, 8 May 2023 17:16:02 -0400 Subject: [PATCH] Correct spelling: updat_id -> update_id (#4299) * Correct spelling: updat_id -> update_id * Bump mysql schema version declarations to v1.10 This was missed in a previous commit. --- .../v57/temporal/versioned/v1.10/update_info_maps_table.sql | 2 +- schema/mysql/v57/version.go | 2 +- .../v8/temporal/versioned/v1.10/update_info_maps_table.sql | 2 +- schema/mysql/v8/version.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql b/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql index 5f6e59bf38f..2a745d7887a 100644 --- a/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql +++ b/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql @@ -4,7 +4,7 @@ CREATE TABLE update_info_maps ( namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, - updat_id VARCHAR(255) NOT NULL, + update_id VARCHAR(255) NOT NULL, -- data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16), diff --git a/schema/mysql/v57/version.go b/schema/mysql/v57/version.go index d4a22d65241..4d527ff5c95 100644 --- a/schema/mysql/v57/version.go +++ b/schema/mysql/v57/version.go @@ -27,7 +27,7 @@ package v57 // NOTE: whenever there is a new database schema update, plz update the following versions // Version is the MySQL database release version -const Version = "1.9" +const Version = "1.10" // VisibilityVersion is the MySQL visibility database release version const VisibilityVersion = "1.1" diff --git a/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql b/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql index 5f6e59bf38f..2a745d7887a 100644 --- a/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql +++ b/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql @@ -4,7 +4,7 @@ CREATE TABLE update_info_maps ( namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, - updat_id VARCHAR(255) NOT NULL, + update_id VARCHAR(255) NOT NULL, -- data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16), diff --git a/schema/mysql/v8/version.go b/schema/mysql/v8/version.go index 7c053bc0f6f..ba07bb03dc0 100644 --- a/schema/mysql/v8/version.go +++ b/schema/mysql/v8/version.go @@ -27,7 +27,7 @@ package v8 // NOTE: whenever there is a new database schema update, plz update the following versions // Version is the MySQL database release version -const Version = "1.9" +const Version = "1.10" // VisibilityVersion is the MySQL visibility database release version const VisibilityVersion = "1.3"