--- a/server/sources/native.py Wed Mar 05 16:58:14 2014 +0100
+++ b/server/sources/native.py Tue Feb 18 15:26:22 2014 +0100
@@ -1291,10 +1291,10 @@
"""
FTIndexEntityOp.get_instance(session).add_data(entity.eid)
- def fti_unindex_entities(self, session, entities):
+ def fti_unindex_entities(self, cnx, entities):
"""remove text content for entities from the full text index
"""
- cursor = session.cnxset.cu
+ cursor = cnx.cnxset.cu
cursor_unindex_object = self.dbhelper.cursor_unindex_object
try:
for entity in entities:
@@ -1303,11 +1303,11 @@
self.exception('error while unindexing %s', entity)
- def fti_index_entities(self, session, entities):
+ def fti_index_entities(self, cnx, entities):
"""add text content of created/modified entities to the full text index
"""
cursor_index_object = self.dbhelper.cursor_index_object
- cursor = session.cnxset.cu
+ cursor = cnx.cnxset.cu
try:
# use cursor_index_object, not cursor_reindex_object since
# unindexing done in the FTIndexEntityOp