| 3094 | driver_column_names, |
| 3095 | ): |
| 3096 | class MyInt(TypeDecorator): |
| 3097 | cache_ok = True |
| 3098 | impl = Integer |
| 3099 | |
| 3100 | def result_processor(self, dialect, coltype): |
| 3101 | return str |
| 3102 | |
| 3103 | class MyStr(TypeDecorator): |
| 3104 | cache_ok = True |
no outgoing calls