File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 - main
1515 workflow_dispatch :
1616
17+ concurrency :
18+ group : ci-${{ github.head_ref || github.ref }}
19+ cancel-in-progress : true
20+
1721env :
1822 POSTGRES_USER : postgres
1923 POSTGRES_PASSWORD : postgres
Original file line number Diff line number Diff line change @@ -791,6 +791,6 @@ def validate_pushdown(stmt: Any) -> list[str]:
791791 warnings .append ("No ParadeDB predicate found in WHERE clause; query will not use a BM25 index" )
792792
793793 if has_order_by (stmt ) and not has_limit (stmt ):
794- warnings .append ("ORDER BY is present without LIMIT; top-N pushdown to ParadeDB requires both" )
794+ warnings .append ("ORDER BY is present without LIMIT; Top K pushdown to ParadeDB requires both" )
795795
796796 return warnings
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def test_validate_pushdown_ignores_limit_identifier_names():
172172
173173 warnings = validate_pushdown (stmt )
174174
175- assert "ORDER BY is present without LIMIT; top-N pushdown to ParadeDB requires both" in warnings
175+ assert "ORDER BY is present without LIMIT; Top K pushdown to ParadeDB requires both" in warnings
176176
177177
178178def test_custom_nodes_have_cache_keys ():
You can’t perform that action at this time.
0 commit comments