Skip to content

Commit 4fe4029

Browse files
committed
test
1 parent 40b92c6 commit 4fe4029

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_mindsdb/test_selects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_select_status_column(self):
4545
def test_native_query(self):
4646
sql = """
4747
SELECT status
48-
FROM int1 (select q from p from r)
48+
FROM int1 (select q from p from r where x = 'test''test')
4949
group by 1
5050
limit 1
5151
"""
@@ -54,7 +54,7 @@ def test_native_query(self):
5454
targets=[Identifier('status')],
5555
from_table=NativeQuery(
5656
integration=Identifier('int1'),
57-
query='select q from p from r'
57+
query="select q from p from r where x = 'test''test'"
5858
),
5959
limit=Constant(1),
6060
group_by=[Constant(1)]

0 commit comments

Comments
 (0)