You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add missing row count limits to TPC-H queries (#16230)
For queries 2,3,10,18 and 21 the TPC-H spec defines a row count limit.
```
2.1.2.9 Queries 2, 3, 10, 18 and 21 require that a given number of rows are to be returned (e.g., “Return the first 10 selected
rows”). If N is the number of rows to be returned, the query must return exactly the first N rows unless fewer than N
rows qualify, in which case all rows must be returned. There are three permissible ways of satisfying this
requirement. A test sponsor must select any one of them and use it consistently for all the queries that require that a
specified number of rows be returned.
```
https://www.tpc.org/tpc_documents_current_versions/pdf/tpc-h_v2.17.1.pdf
0 commit comments