We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40b92c6 commit 4fe4029Copy full SHA for 4fe4029
tests/test_mindsdb/test_selects.py
@@ -45,7 +45,7 @@ def test_select_status_column(self):
45
def test_native_query(self):
46
sql = """
47
SELECT status
48
- FROM int1 (select q from p from r)
+ FROM int1 (select q from p from r where x = 'test''test')
49
group by 1
50
limit 1
51
"""
@@ -54,7 +54,7 @@ def test_native_query(self):
54
targets=[Identifier('status')],
55
from_table=NativeQuery(
56
integration=Identifier('int1'),
57
- query='select q from p from r'
+ query="select q from p from r where x = 'test''test'"
58
),
59
limit=Constant(1),
60
group_by=[Constant(1)]
0 commit comments