]> git.joonet.de Git - adminer.git/commitdiff
MySQL: Fix typo in the date type (regression from 4.17.0)
authorJakub Vrana <jakub@vrana.cz>
Tue, 25 Feb 2025 04:41:41 +0000 (05:41 +0100)
committerJakub Vrana <jakub@vrana.cz>
Tue, 25 Feb 2025 04:41:41 +0000 (05:41 +0100)
adminer/drivers/mysql.inc.php
changes.txt

index f5270921c0ba8cc89b59cabdfd26c3b06ec7a7a8..f1ae8a8a59b55b22e27178171775534c0bfbd36f 100644 (file)
@@ -1171,7 +1171,7 @@ if (!defined("DRIVER")) {
                $structured_types = array(); ///< @var array [$description => array($type, ...), ...]
                foreach (array(
                        lang('Numbers') => array("tinyint" => 3, "smallint" => 5, "mediumint" => 8, "int" => 10, "bigint" => 20, "decimal" => 66, "float" => 12, "double" => 21),
-                       lang('Date and time') => array("dat`e" => 10, "datetime" => 19, "timestamp" => 19, "time" => 10, "year" => 4),
+                       lang('Date and time') => array("date" => 10, "datetime" => 19, "timestamp" => 19, "time" => 10, "year" => 4),
                        lang('Strings') => array("char" => 255, "varchar" => 65535, "tinytext" => 255, "text" => 65535, "mediumtext" => 16777215, "longtext" => 4294967295),
                        lang('Lists') => array("enum" => 65535, "set" => 64),
                        lang('Binary') => array("bit" => 20, "binary" => 255, "varbinary" => 65535, "tinyblob" => 255, "blob" => 65535, "mediumblob" => 16777215, "longblob" => 4294967295),
index 615208b1c172325d74ffe005591dd6f8e1ce103e..b1d638874da45a7b08b13cb43ffceed4d0203316 100644 (file)
@@ -1,4 +1,5 @@
 Adminer-4.17.1-dev:
+MySQL: Fix typo in the date type (regression from 4.17.0)
 
 Adminer 4.17.0 (released 2025-02-24):
 Hide index column options by default