equal
deleted
inserted
replaced
229 rschema = values = entity = None # make pylint happy |
229 rschema = values = entity = None # make pylint happy |
230 |
230 |
231 def precommit_event(self): |
231 def precommit_event(self): |
232 session = self.session |
232 session = self.session |
233 rschema = self.rschema |
233 rschema = self.rschema |
234 if rschema.final or not 'inlined' in self.values: |
234 entity = self.entity |
|
235 if 'fulltext_container' in entity.edited_attributes: |
|
236 ftiupdates = session.transaction_data.setdefault( |
|
237 'fti_update_etypes', set()) |
|
238 for subjtype, objtype in rschema.rdefs: |
|
239 ftiupdates.add(subjtype) |
|
240 ftiupdates.add(objtype) |
|
241 UpdateFTIndexOp(session) |
|
242 if rschema.final or not 'inlined' in entity.edited_attributes: |
235 return # nothing to do |
243 return # nothing to do |
236 inlined = self.values['inlined'] |
244 inlined = self.values['inlined'] |
237 entity = self.entity |
245 entity = self.entity |
238 # check in-lining is necessary / possible |
246 # check in-lining is necessary / possible |
239 if not entity.inlined_changed(inlined): |
247 if not entity.inlined_changed(inlined): |
489 session.system_sql(sql) |
497 session.system_sql(sql) |
490 if 'fulltextindexed' in self.values: |
498 if 'fulltextindexed' in self.values: |
491 UpdateFTIndexOp(session) |
499 UpdateFTIndexOp(session) |
492 session.transaction_data.setdefault( |
500 session.transaction_data.setdefault( |
493 'fti_update_etypes', set()).add(etype) |
501 'fti_update_etypes', set()).add(etype) |
494 elif 'fulltext_container' in self.values: |
|
495 ftiupdates = session.transaction_data.setdefault( |
|
496 'fti_update_etypes', set()) |
|
497 ftiupdates.add(etype) |
|
498 ftiupdates.add(self.kobj[1]) |
|
499 UpdateFTIndexOp(session) |
|
500 |
502 |
501 |
503 |
502 class SourceDbCWConstraintAdd(hook.Operation): |
504 class SourceDbCWConstraintAdd(hook.Operation): |
503 """actually update constraint of a relation definition""" |
505 """actually update constraint of a relation definition""" |
504 entity = None # make pylint happy |
506 entity = None # make pylint happy |