Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
506 B
MySQL
Raw Normal View History

Fix #22403: Smart Reindex (#22404) * 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>
2025-07-18 21:53:43 -07:00
-- Create table for tracking index mapping versions
CREATE TABLE IF NOT EXISTS index_mapping_versions (
entityType VARCHAR(256) NOT NULL,
mappingHash VARCHAR(32) COLLATE ascii_bin NOT NULL,
mappingJson JSON NOT NULL,
version VARCHAR(36) NOT NULL,
updatedAt BIGINT UNSIGNED NOT NULL,
updatedBy VARCHAR(256) NOT NULL,
PRIMARY KEY (entityType),
INDEX idx_version (version),
INDEX idx_updatedAt (updatedAt)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;