diff --git a/CHANGELOG.md b/CHANGELOG.md index 168a8959..dd7bc56a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - PostgreSQL 11-: Avoid duplicate oid in table status (bug #1089) - Elasticsearch: Support dropping aliases - Plugins: Methods processList() and killProcess() +- New plugin: Display row numbers in select (bug #1106) ## Adminer 5.3.0 (released 2025-05-04) - Align numeric functions right diff --git a/plugins/row-numbers.php b/plugins/row-numbers.php new file mode 100644 index 00000000..64cf4dc3 --- /dev/null +++ b/plugins/row-numbers.php @@ -0,0 +1,24 @@ +selectLimitProcess(); + $n++; + echo "$n.\n"; + } + + protected $translations = array( + 'cs' => array('' => 'Zobrazí čísla řádek ve výpisu'), + ); +}