-
Notifications
You must be signed in to change notification settings - Fork 804
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update caas schema with created_time and last_updated_time
- Loading branch information
Showing
4 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"CurrVersion": "0.39", | ||
"MinCompatibleVersion": "0.39", | ||
"Description": "Adding create time and last update time for history tables", | ||
"SchemaUpdateCqlFiles": [ | ||
"task_list_partition_config.cql" | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
schema/cassandra/cadence/versioned/v0.39/task_list_partition_config.cql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TYPE task_list_partition_config ( | ||
version bigint, | ||
num_read_partitions int, | ||
num_write_partitions int | ||
); | ||
|
||
ALTER TYPE task_list ADD adaptive_partition_config frozen<task_list_partition_config>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters