(over_limit)
| 93 | |
| 94 | |
| 95 | def test_row_limit_on_non_select(over_limit): |
| 96 | cli = PGCli() |
| 97 | stmt = "UPDATE students SET name='Boby'" |
| 98 | result = cli._should_limit_output(stmt, over_limit) |
| 99 | assert result is False |
| 100 | |
| 101 | cli = PGCli(row_limit=0) |
| 102 | result = cli._should_limit_output(stmt, over_limit) |
| 103 | assert result is False |
nothing calls this directly
no test coverage detected