mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-04 15:18:17 +00:00

* Fix #22403: Smart Reindex * Update generated TypeScript types * Docs: Artifacts Removal (#22442) Co-authored-by: “Rounak <“rounakpreet.d@deuexsolutions.com”> * Docs: Meta Tags Updation (#22444) Co-authored-by: “Rounak <“rounakpreet.d@deuexsolutions.com”> * Fixes #22363 #22369: Stored procedure temp table processing and lineage filtering with db & schema (#22416) * Process temp table graph in stored procedure processor and add db/schema filtering on lineage * Add tests for stored procedure lineage processing * Fix tests and py_format * Fix the filters and log stored proc query count info * Playwright Update: Bulk Import (#22436) Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local> Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com> * Docs: Databrick Features Updation (#22448) Co-authored-by: “Rounak <“rounakpreet.d@deuexsolutions.com”> * Docs: Meta Updation (#22451) Co-authored-by: “Rounak <“rounakpreet.d@deuexsolutions.com”> Co-authored-by: Prajwal214 <167504578+Prajwal214@users.noreply.github.com> * Docs: 18.4 to 1.8.6 Release Updation (#22455) Co-authored-by: “Rounak <“rounakpreet.d@deuexsolutions.com”> * fix the flaky glossary bulk edit failure (#22446) * Move schema changes to 1.8.7 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com> Co-authored-by: Rounak Dhillon <162090200+RounakDhillon@users.noreply.github.com> Co-authored-by: “Rounak <“rounakpreet.d@deuexsolutions.com”> Co-authored-by: Mohit Tilala <63147650+mohittilala@users.noreply.github.com> Co-authored-by: satish <satishmwaghela@gmail.com> Co-authored-by: Satish <satish@Satishs-MacBook-Pro.local> Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com> Co-authored-by: Prajwal214 <167504578+Prajwal214@users.noreply.github.com> Co-authored-by: Ashish Gupta <ashish@getcollate.io>
13 lines
548 B
SQL
13 lines
548 B
SQL
-- Create table for tracking index mapping versions
|
|
CREATE TABLE IF NOT EXISTS index_mapping_versions (
|
|
entityType VARCHAR(256) NOT NULL,
|
|
mappingHash VARCHAR(32) NOT NULL,
|
|
mappingJson JSONB NOT NULL,
|
|
version VARCHAR(36) NOT NULL,
|
|
updatedAt BIGINT NOT NULL,
|
|
updatedBy VARCHAR(256) NOT NULL,
|
|
PRIMARY KEY (entityType)
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_index_mapping_versions_version ON index_mapping_versions (version);
|
|
CREATE INDEX IF NOT EXISTS idx_index_mapping_versions_updatedAt ON index_mapping_versions (updatedAt); |