(db)
| 340 | |
| 341 | |
| 342 | def test_limits(db): |
| 343 | data = read_sql_table("test", db, npartitions=2, index_col="number", limits=[1, 4]) |
| 344 | assert data.index.min().compute() == 1 |
| 345 | assert data.index.max().compute() == 4 |
| 346 | |
| 347 | |
| 348 | def test_datetimes(): |
nothing calls this directly
no test coverage detected