From c9c740467baf9d8adba553c1251cf4be04756f23 Mon Sep 17 00:00:00 2001 From: Vincent Pelletier <vincent@nexedi.com> Date: Thu, 18 Jun 2009 15:05:44 +0000 Subject: [PATCH] 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 --- product/ZSQLCatalog/Query/SQLQuery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product/ZSQLCatalog/Query/SQLQuery.py b/product/ZSQLCatalog/Query/SQLQuery.py index ef78600756..da996e1f7d 100644 --- a/product/ZSQLCatalog/Query/SQLQuery.py +++ b/product/ZSQLCatalog/Query/SQLQuery.py @@ -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): -- 2.30.9