goa/rqlinterpreter.py
branchtls-sprint
changeset 1132 96752791c2b6
parent 1131 544609e83317
child 1133 8a409ea0c9ec
equal deleted inserted replaced
1131:544609e83317 1132:96752791c2b6
     1 """provide a minimal RQL support for google appengine dbmodel
     1 """provide a minimal RQL support for google appengine dbmodel
     2 
     2 
     3 :organization: Logilab
     3 :organization: Logilab
     4 :copyright: 2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     4 :copyright: 2008-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     6 """
     6 """
     7 __docformat__ = "restructuredtext en"
     7 __docformat__ = "restructuredtext en"
     8 
     8 
     9 from mx.DateTime import DateTimeType, DateTimeDeltaType
     9 from mx.DateTime import DateTimeType, DateTimeDeltaType
    10 from datetime import datetime
    10 from datetime import datetime
    11 
    11 
    12 from rql import RQLHelper, nodes
    12 from rql import RQLHelper, nodes
    13 from logilab.common.compat import any
       
    14 
    13 
    15 from cubicweb import Binary
    14 from cubicweb import Binary
    16 from cubicweb.rset import ResultSet
    15 from cubicweb.rset import ResultSet
    17 from cubicweb.server import SQL_CONNECT_HOOKS
    16 from cubicweb.server import SQL_CONNECT_HOOKS
    18 
    17