| 3463 | |
| 3464 | |
| 3465 | class _IdentityTokenEntity(_ORMColumnEntity): |
| 3466 | translate_raw_column = False |
| 3467 | |
| 3468 | def setup_compile_state(self, compile_state): |
| 3469 | pass |
| 3470 | |
| 3471 | def row_processor(self, context, result): |
| 3472 | def getter(row): |
| 3473 | return context.load_options._identity_token |
| 3474 | |
| 3475 | return getter, self._label_name, self._extra_entities |