(elem, compiler, **kw)
| 1419 | |
| 1420 | @compiles(myfunc) |
| 1421 | def compile_(elem, compiler, **kw): |
| 1422 | return compiler.process(func.current_date()) |
| 1423 | |
| 1424 | x = connection.execute(func.current_date()).scalar() |
| 1425 | y = connection.execute(func.current_date().select()).scalar() |
nothing calls this directly
no test coverage detected