Skip to content

Commit

Permalink
fix: added index on timestamp field for reindex (open-metadata#19101)
Browse files Browse the repository at this point in the history
  • Loading branch information
TeddyCr authored Dec 16, 2024
1 parent 254fce4 commit bd68d95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Empty file.
2 changes: 2 additions & 0 deletions bootstrap/sql/migrations/native/1.6.2/mysql/schemaChanges.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- add timestamp index for test case result reindex performance
ALTER TABLE data_quality_data_time_series ADD INDEX `idx_timestamp_desc` (timestamp DESC);
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- add timestamp index for test case result reindex performance
CREATE INDEX idx_timestamp_desc ON data_quality_data_time_series (timestamp DESC);

0 comments on commit bd68d95

Please sign in to comment.