(self, connection)
| 1860 | |
| 1861 | @testing.requires.window_functions |
| 1862 | def test_over(self, connection): |
| 1863 | flds = self.tables.flds |
| 1864 | |
| 1865 | eq_( |
| 1866 | connection.execute( |
| 1867 | select( |
| 1868 | flds.c.intcol, |
| 1869 | func.row_number().over(order_by=flds.c.strcol), |
| 1870 | ) |
| 1871 | ).fetchall(), |
| 1872 | [(13, 1), (5, 2)], |
| 1873 | ) |