goa/overrides/rqlannotation.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Tue, 19 Jan 2010 11:58:07 +0100
changeset 4260 832b578839cb
parent 4212 ab6573088b4a
child 5421 8167de96c523
permissions -rw-r--r--
[forms] fix implementation of backward compat method form_render previous implemtation used form_default_renderer() which is now replaced by default_renderer()

"""
:organization: Logilab
:copyright: 2008-2010 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.final)
    def annotate(self, rqlst):
        rqlst.has_text_query = False
        rqlst.need_distinct = False