| 2188 | return super().order_by_clause(select, **kw) + " CUSTOMIZED" |
| 2189 | |
| 2190 | class CustomDialect(PGDialect): |
| 2191 | name = "custom" |
| 2192 | statement_compiler = CustomCompiler |
| 2193 | |
| 2194 | stmt = select(table1.c.myid).order_by(table1.c.myid) |
| 2195 | self.assert_compile( |
no outgoing calls