Skip to content

Commit 77556a2

Browse files
authored
remove EDS in scenario tests init (#14475)
1 parent 85359f5 commit 77556a2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ydb/tests/olap/scenario/helpers/scenario_tests_helper.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,8 @@ def remove_path(self, path: str, folder: str = '') -> None:
706706
self.execute_scheme_query(dh.DropTable(os.path.join(folder, e.name)))
707707
elif e.is_column_store():
708708
self.execute_scheme_query(dh.DropTableStore(os.path.join(folder, e.name)))
709+
elif e.is_external_data_source():
710+
self.execute_scheme_query(dh.DropExternalDataSource(os.path.join(folder, e.name)))
709711
elif e.is_directory():
710712
self._run_with_expected_status(
711713
lambda: YdbCluster.get_ydb_driver().scheme_client.remove_directory(os.path.join(root_path, e.name)),

0 commit comments

Comments
 (0)