From c61ab94ff496da33822091c8cd3d9219aa81c79f Mon Sep 17 00:00:00 2001 From: Imri Paran Date: Wed, 28 Feb 2024 14:21:30 +0100 Subject: [PATCH] Update conn_test.py (#15385) --- ingestion/src/metadata/profiler/orm/functions/conn_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/profiler/orm/functions/conn_test.py b/ingestion/src/metadata/profiler/orm/functions/conn_test.py index 28941f6a9c4..02e598ff350 100644 --- a/ingestion/src/metadata/profiler/orm/functions/conn_test.py +++ b/ingestion/src/metadata/profiler/orm/functions/conn_test.py @@ -50,7 +50,7 @@ def _(*_, **__): @compiles(ConnTestFn, Dialects.IbmDbSa) @compiles(ConnTestFn, Dialects.Ibmi) def _(*_, **__): - return "SELECT 42 FROM SYSIBM.SYSDUMMY1;" + return "SELECT 42 FROM SYSIBM.SYSDUMMY1" @compiles(ConnTestFn, Dialects.Hana)