Files
adminer/plugins/drivers
Marcus Nightingale 4d0e79234c ClickHouse: Fix offset (bug #1188)
Previously, the driver used `LIMIT <limit>, <offset>` syntax, causing incorrect
pagination behavior (page 2 repeating results from page 1, etc.). Updated the
`limit()` function to use ClickHouse-compatible `LIMIT <count> OFFSET <offset>`
syntax, ensuring correct row offsets across pages.
2025-10-27 15:17:28 +01:00
..
2025-09-08 08:27:09 +02:00
2025-06-11 08:16:57 +02:00

Using drivers: https://www.adminer.org/plugins/#use

Developing drivers: https://www.adminer.org/en/drivers/

The type declarations must be compatible both with source codes and the compiled version (where PHP5-incompatible types are stripped). It means:

  • specify return type if parent specifies it
  • do not specify scalar parameter type