Skip to content

Commit

Permalink
Merge branch 'main' into alert-bar
Browse files Browse the repository at this point in the history
  • Loading branch information
sweta1308 authored Nov 18, 2024
2 parents 415987f + 5cdde20 commit 4a623e7
Show file tree
Hide file tree
Showing 602 changed files with 23,911 additions and 2,805 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ openmetadata-ui/src/main/resources/ui/playwright/.auth
#UI - Dereferenced Schemas
openmetadata-ui/src/main/resources/ui/src/jsons/connectionSchemas
openmetadata-ui/src/main/resources/ui/src/jsons/ingestionSchemas
openmetadata-ui/src/main/resources/ui/src/jsons/governanceSchemas

#UI - Generated TS
openmetadata-ui/src/main/resources/ui/src/generated
Expand Down
13 changes: 0 additions & 13 deletions .run/Template JUnit.run.xml

This file was deleted.

Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Remove SearchIndexing for api Service, collection and endpoint
DELETE er FROM entity_relationship er JOIN installed_apps ia ON er.fromId = ia.id OR er.toId = ia.id WHERE ia.name = 'SearchIndexingApplication';
DELETE er FROM entity_relationship er JOIN apps_marketplace ia ON er.fromId = ia.id OR er.toId = ia.id WHERE ia.name = 'SearchIndexingApplication';
DELETE from installed_apps where name = 'SearchIndexingApplication';
DELETE from apps_marketplace where name = 'SearchIndexingApplication';
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Remove SearchIndexing for api Service, collection and endpoint
DELETE FROM entity_relationship er USING installed_apps ia WHERE (er.fromId = ia.id OR er.toId = ia.id) AND ia.name = 'SearchIndexingApplication';
DELETE FROM entity_relationship er USING apps_marketplace ia WHERE (er.fromId = ia.id OR er.toId = ia.id) AND ia.name = 'SearchIndexingApplication';
DELETE from installed_apps where name = 'SearchIndexingApplication';
DELETE from apps_marketplace where name = 'SearchIndexingApplication';
Loading

0 comments on commit 4a623e7

Please sign in to comment.