(LIMIT, over_limit, stmt)
| 55 | ], |
| 56 | ) |
| 57 | def test_row_limit_with_LIMIT_clause(LIMIT, over_limit, stmt): |
| 58 | cli = PGCli(row_limit=LIMIT) |
| 59 | |
| 60 | result = cli._should_limit_output(stmt, over_limit) |
| 61 | assert result is False |
| 62 | |
| 63 | cli = PGCli(row_limit=0) |
| 64 | result = cli._should_limit_output(stmt, over_limit) |
| 65 | assert result is False |
| 66 | |
| 67 | |
| 68 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected