mirror of https://github.com/nocodb/nocodb
Browse Source
When using _p ang _size query params in URL, the first row is skipped. Example: _p = 1 & _size = 20 reqParams._index will be = (1 - 1) * 20 + 1 = 1; Generated SQL will be SELECT * FROM ? LIMIT 1,20. This SQL skips first element (with index 0) Correct SQL that should be generated is SELECT * FROM ? LIMIT 0,20pull/16/head
Stanislav Oaserele
7 years ago
committed by
GitHub
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue