mirror of
https://github.com/vrana/adminer.git
synced 2025-08-09 16:17:48 +02:00
Fix type error in Create function (fix #1053)
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
## Adminer dev
|
## Adminer dev
|
||||||
- Align numeric functions right
|
- Align numeric functions right
|
||||||
- Autocomplete: Support table aliases
|
- Autocomplete: Support table aliases
|
||||||
|
- Fix type error in Create function (bug #1053)
|
||||||
- MySQL: Avoid warning on selecting tables with fulltext indexes (bug #1036)
|
- MySQL: Avoid warning on selecting tables with fulltext indexes (bug #1036)
|
||||||
- MySQL, PostgreSQL: Support index algorithms (bug #1030)
|
- MySQL, PostgreSQL: Support index algorithms (bug #1030)
|
||||||
- PostgreSQL, CockroachDB: Creating partitioned tables (bug #1031)
|
- PostgreSQL, CockroachDB: Creating partitioned tables (bug #1031)
|
||||||
|
@@ -56,7 +56,7 @@ echo ($collations ? "<datalist id='collations'>" . optionlist($collations) . "</
|
|||||||
edit_fields($row["fields"], $collations, $routine);
|
edit_fields($row["fields"], $collations, $routine);
|
||||||
if (isset($_GET["function"])) {
|
if (isset($_GET["function"])) {
|
||||||
echo "<tr><td>" . lang('Return type');
|
echo "<tr><td>" . lang('Return type');
|
||||||
edit_type("returns", $row["returns"], $collations, array(), (JUSH == "pgsql" ? array("void", "trigger") : array()));
|
edit_type("returns", (array) $row["returns"], $collations, array(), (JUSH == "pgsql" ? array("void", "trigger") : array()));
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
|
Reference in New Issue
Block a user