(self, connection)
| 1645 | |
| 1646 | @testing.fails_on_everything_except("postgresql") |
| 1647 | def test_as_from(self, connection): |
| 1648 | # TODO: shouldn't this work on oracle too ? |
| 1649 | x = connection.execute(func.current_date()).scalar() |
| 1650 | y = connection.execute(func.current_date().select()).scalar() |
| 1651 | z = connection.scalar(func.current_date()) |
| 1652 | w = connection.scalar(select("*").select_from(func.current_date())) |
| 1653 | |
| 1654 | assert x == y == z == w |
| 1655 | |
| 1656 | def test_extract_bind(self, connection): |
| 1657 | """Basic common denominator execution tests for extract()""" |
nothing calls this directly
no test coverage detected