fix: add test case result extension for ts migration (#13195)

This commit is contained in:
Teddy 2023-09-14 16:40:11 +02:00 committed by GitHub
parent ae55b81a36
commit 4012f25d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ UPDATE entity_extension_time_series
JSON_EXTRACT(json, '$.timestamp') * 1000
)
WHERE
extension in ('table.tableProfile', 'table.columnProfile');
extension in ('table.tableProfile', 'table.columnProfile', 'testCase.testCaseResult');
;
START TRANSACTION;

View File

@ -6,7 +6,7 @@ SET json = jsonb_set(
to_jsonb(cast(json#>'{timestamp}' as int8) *1000)
)
WHERE
extension in ('table.tableProfile', 'table.columnProfile');
extension in ('table.tableProfile', 'table.columnProfile', 'testCase.testCaseResult');
;
BEGIN;