Skip to content

Commit

Permalink
Merge branch 'main' into GEN-1559
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketkatkar97 authored Nov 15, 2024
2 parents a4188ce + 560e28d commit cdfc974
Show file tree
Hide file tree
Showing 892 changed files with 39,096 additions and 6,006 deletions.
4 changes: 4 additions & 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 Expand Up @@ -129,3 +130,6 @@ ingestion/tests/cli_e2e/**/*test.yaml

# GX artifacts
/ingestion/tests/integration/great_expectations/gx/*

# Tests
**/metastore_db/
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 cdfc974

Please sign in to comment.