server/sources/native.py
changeset 5768 1e73a466aa69
parent 5752 b0bb553e3be4
child 5849 9db65b381028
equal deleted inserted replaced
5766:c397819f2482 5768:1e73a466aa69
    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