Skip to content

Commit d6887dc

Browse files
committed
Make Iceberg Fusion SQL commands visible
1 parent 157d952 commit d6887dc

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

singlestoredb/fusion/handlers/export.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ class CreateClusterIdentity(SQLHandler):
7171
7272
"""
7373

74-
_enabled = False
75-
7674
def run(self, params: Dict[str, Any]) -> Optional[FusionSQLResult]:
7775
# Catalog
7876
catalog_config = json.loads(params['catalog'].get('catalog_config', '{}') or '{}')
@@ -165,8 +163,6 @@ class CreateExport(SQLHandler):
165163
166164
""" # noqa
167165

168-
_enabled = False
169-
170166
def run(self, params: Dict[str, Any]) -> Optional[FusionSQLResult]:
171167
# From table
172168
if isinstance(params['from_table'], str):
@@ -219,8 +215,6 @@ class ShowExport(SQLHandler):
219215
220216
"""
221217

222-
_enabled = False
223-
224218
def run(self, params: Dict[str, Any]) -> Optional[FusionSQLResult]:
225219
wsg = get_workspace_group({})
226220
out = ExportStatus(params['export_id'], wsg)

0 commit comments

Comments
 (0)