(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestGetStatementWithResultLimit(t *testing.T) { |
| 18 | runLimitTest(t, "test_limit.yaml", false /* record */) |
| 19 | } |
| 20 | |
| 21 | func TestAddLimitFor12cAndLaterUsesOmni(t *testing.T) { |
| 22 | stmt := "SELECT emp_id, salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rn FROM employees QUALIFY rn <= 10" |
nothing calls this directly
no test coverage detected