Skip to content

Commit

Permalink
Correct spelling: updat_id -> update_id (#4299)
Browse files Browse the repository at this point in the history
* Correct spelling: updat_id -> update_id

* Bump mysql schema version declarations to v1.10

This was missed in a previous commit.
  • Loading branch information
Matt McShane authored May 8, 2023
1 parent 89f707b commit 8fa4d3f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion schema/mysql/v57/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion schema/mysql/v8/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 8fa4d3f

Please sign in to comment.