Skip to content

Commit 7571c05

Browse files
committed
address comments
1 parent fbd6b91 commit 7571c05

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/integ/datasource/test_oracledb.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,11 @@ def create_connection_oracledb():
158158
# check that udtf is used
159159
flag = False
160160
for q in his.queries:
161-
if "table(" in q.sql_text:
161+
if (
162+
"""CREATE
163+
TEMPORARY FUNCTION data_source_udtf"""
164+
in q.sql_text
165+
):
162166
flag = True
163167
assert flag
164168

0 commit comments

Comments
 (0)