(self)
| 1451 | ) |
| 1452 | |
| 1453 | def test_no_paren_fns(self): |
| 1454 | for fn, expected in [ |
| 1455 | (func.uid(), "uid"), |
| 1456 | (func.UID(), "UID"), |
| 1457 | (func.sysdate(), "sysdate"), |
| 1458 | (func.row_number(), "row_number()"), |
| 1459 | (func.rank(), "rank()"), |
| 1460 | (func.now(), "CURRENT_TIMESTAMP"), |
| 1461 | (func.current_timestamp(), "CURRENT_TIMESTAMP"), |
| 1462 | (func.user(), "USER"), |
| 1463 | ]: |
| 1464 | self.assert_compile(fn, expected) |
| 1465 | |
| 1466 | def test_create_index_alt_schema(self): |
| 1467 | m = MetaData() |
nothing calls this directly
no test coverage detected