goa/overrides/rqlannotation.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Tue, 15 Sep 2009 16:00:03 +0200
branch3.5
changeset 3231 3ee43e2f8560
parent 1977 606923dff11b
child 3689 deb13e88e037
permissions -rw-r--r--
[utils] provide a class to extend the default simplejson encoder to be able to dump standard yams attribute types

"""
:organization: Logilab
:copyright: 2008-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
__docformat__ = "restructuredtext en"

def set_qdata(getrschema, union, noinvariant):
    pass

class SQLGenAnnotator(object):
    def __init__(self, schema):
        self.schema = schema
        self.nfdomain = frozenset(eschema.type for eschema in schema.entities()
                                  if not eschema.is_final())
    def annotate(self, rqlst):
        rqlst.has_text_query = False
        rqlst.need_distinct = False