test: update test_multiple_tables_in_filters
This commit is contained in:
parent
36de21c059
commit
ba51289c37
1 changed files with 1 additions and 1 deletions
|
|
@ -16,5 +16,5 @@ class TestQuery(unittest.TestCase):
|
|||
["DocType", "parent", "=", "something"],
|
||||
],
|
||||
).get_sql(),
|
||||
"SELECT * FROM `tabDocType` WHERE `tabBOM Update Log`.`name` LIKE 'f%' AND `tabDocType`.`parent`='something'",
|
||||
"SELECT * FROM `tabDocType` LEFT JOIN `tabBOM Update Log` ON `tabBOM Update Log`.`parent`=`tabDocType`.`name` WHERE `tabBOM Update Log`.`name` LIKE 'f%' AND `tabDocType`.`parent`='something'",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue