Skip to content

Commit c7713b1

Browse files
authored
Support arbitrary history task category in SQL persistence (#3489)
1 parent 3aff85e commit c7713b1

File tree

25 files changed

+1477
-60
lines changed

25 files changed

+1477
-60
lines changed

common/persistence/cassandra/mutable_state_task_store.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ const (
7676
`and workflow_id = ? ` +
7777
`and run_id = ? ` +
7878
`and visibility_ts = ? ` +
79-
`and task_id > ? ` +
80-
`and task_id <= ?`
79+
`and task_id >= ? ` +
80+
`and task_id < ?`
8181

8282
templateGetHistoryScheduledTasksQuery = `SELECT task_data, task_encoding ` +
8383
`FROM executions ` +

0 commit comments

Comments
 (0)