(element, compiler, **kw)
| 824 | |
| 825 | @compiles(SomeColThing) |
| 826 | def process(element, compiler, **kw): |
| 827 | return "SOME_COL_THING(%s)" % compiler.process( |
| 828 | element.clause, **kw |
| 829 | ) |
| 830 | |
| 831 | return SomeColThing |
| 832 |
no outgoing calls
no test coverage detected