Commit c9c74046 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix a typo in SQLQuery class on asSearchTextEspression method name. This class...

Fix a typo in SQLQuery class on asSearchTextEspression method name. This class now effectively that it can generate a SearchTextExpression, although it always returns None.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27660 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent eb660295
......@@ -49,7 +49,7 @@ class SQLQuery(Query):
assert len(payload)
self.payload = '(' + payload + ')'
def asSearchText(self, sql_catalog):
def asSearchTextExpression(self, sql_catalog):
return None
def asSQLExpression(self, sql_catalog, column_map, only_group_columns):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment