summaryrefslogtreecommitdiff
path: root/adbh.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-06-05 08:34:18 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-06-05 08:34:18 +0200
commit630a517219464f3113449b5984c04e18b96f265c (patch)
tree05046e118432114c066ede34ccdfc64f00ff0a0f /adbh.py
parent04851e7ad6f39c8574d6015b88e4f698c6335baf (diff)
downloadlogilab-common-630a517219464f3113449b5984c04e18b96f265c.tar.gz
new case_sensitive resource descriptor
Diffstat (limited to 'adbh.py')
-rw-r--r--adbh.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/adbh.py b/adbh.py
index b8de178..d371173 100644
--- a/adbh.py
+++ b/adbh.py
@@ -108,6 +108,7 @@ class _GenericAdvFuncHelper:
groups_support = True
ilike_support = True
alter_column_support = True
+ case_sensitive = False
FUNCTIONS = {
# aggregat functions
@@ -463,6 +464,7 @@ class _MyAdvFuncHelper(_GenericAdvFuncHelper):
backend_name = 'mysql'
needs_from_clause = True
ilike_support = False # insensitive search by default
+ case_sensitive = True
# modifiable but should not be shared
FUNCTIONS = _GenericAdvFuncHelper.FUNCTIONS.copy()