mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-28 10:25:20 +00:00

* Glossary Term load issues * Glossary Term load issues * Fix #20081: Infinite scroll Pagination support for Glossary Term Table in UI * Fix #20081: Infinite scroll Pagination support for Glossary Term Table in UI * fixed glossary infinite scroll * removed script * fixed glossary fialing playwright * fixed expand and collapse for entire hierarchy * Add search endpoint to support glossary term search * Add search endpoint to support glossary term search * fixed fetchAllTerm glitch (#23037) * resolve conflicts and fix style * minor prettier fix * Fix(ui): Infinity Scroll Playwright (#23088) * fixed comments * removed unncessary files * addressed ui issue --------- Co-authored-by: Ashish Gupta <ashish@getcollate.io> * Fix(ui):Infinite Scroll Unit Tests (#23131) * fixed failing unit tests * fixed mock type field * Minor: Move migrations to 1.9.6 * Revert unintended changes in 1.9.5 migration files * fix build --------- Co-authored-by: Dhruv Parmar <83108871+dhruvjsx@users.noreply.github.com> Co-authored-by: sonika-shah <58761340+sonika-shah@users.noreply.github.com> Co-authored-by: sonikashah <sonikashah94@gmail.com> Co-authored-by: Ashish Gupta <ashish@getcollate.io> Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com>
6 lines
370 B
SQL
6 lines
370 B
SQL
-- Add displayName virtual column to glossary_term_entity for efficient search
|
|
ALTER TABLE glossary_term_entity ADD COLUMN IF NOT EXISTS displayName VARCHAR(256) GENERATED ALWAYS AS (json ->> 'displayName') STORED;
|
|
|
|
-- Create index on displayName for efficient LIKE queries
|
|
CREATE INDEX IF NOT EXISTS idx_glossary_term_displayName ON glossary_term_entity (displayName);
|