equal
deleted
inserted
replaced
332 if self.repo.config.open_connections_pools: |
332 if self.repo.config.open_connections_pools: |
333 self.open_pool_connections() |
333 self.open_pool_connections() |
334 |
334 |
335 def init(self): |
335 def init(self): |
336 self.init_creating() |
336 self.init_creating() |
|
337 |
|
338 def shutdown(self): |
|
339 if self._eid_creation_cnx: |
|
340 self._eid_creation_cnx.close() |
337 |
341 |
338 # XXX deprecates [un]map_attribute ? |
342 # XXX deprecates [un]map_attribute ? |
339 def map_attribute(self, etype, attr, cb, sourcedb=True): |
343 def map_attribute(self, etype, attr, cb, sourcedb=True): |
340 self._rql_sqlgen.attr_map['%s.%s' % (etype, attr)] = (cb, sourcedb) |
344 self._rql_sqlgen.attr_map['%s.%s' % (etype, attr)] = (cb, sourcedb) |
341 |
345 |