server/sources/native.py
branchstable
changeset 5824 de9b7e88660e
parent 5751 1e5ef464cade
child 5847 51636c991fb4
equal deleted inserted replaced
5817:e4207221f3f5 5824:de9b7e88660e
    20 Notes:
    20 Notes:
    21 * extid (aka external id, the primary key of an entity in the external source
    21 * extid (aka external id, the primary key of an entity in the external source
    22   from which it comes from) are stored in a varchar column encoded as a base64
    22   from which it comes from) are stored in a varchar column encoded as a base64
    23   string. This is because it should actually be Bytes but we want an index on
    23   string. This is because it should actually be Bytes but we want an index on
    24   it for fast querying.
    24   it for fast querying.
    25 
       
    26 """
    25 """
       
    26 
    27 from __future__ import with_statement
    27 from __future__ import with_statement
    28 
    28 
    29 __docformat__ = "restructuredtext en"
    29 __docformat__ = "restructuredtext en"
    30 
    30 
    31 from pickle import loads, dumps
    31 from pickle import loads, dumps