Skip to content

Commit

Permalink
Fix index on MySqlFunctionStore
Browse files Browse the repository at this point in the history
  • Loading branch information
stidsborg committed Sep 15, 2024
1 parent 3620feb commit a808463
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ instance VARCHAR(200) NOT NULL,
exception_json TEXT NULL,
timestamp BIGINT NOT NULL,
PRIMARY KEY (type, instance),
INDEX (type, status, instance)
INDEX (expires, type, instance, status)
);";

await using var command = new MySqlCommand(_initializeSql, conn);
Expand Down

0 comments on commit a808463

Please sign in to comment.