mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Fix to get correct metadata when using temporary tables to create result. (Bug #2654)
client/mysqltest.c: Added support for --enable_metadata mysql-test/t/order_by.test: Improved comment scripts/mysqlaccess.sh: CGI is required (Bug #2988) sql/field.cc: Fix to get correct metadata when using temporary tables to create result sql/field.h: Fix to get correct metadata when using temporary tables to create result sql/sql_insert.cc: Fix to get correct metadata when using temporary tables to create result
This commit is contained in:
@ -414,7 +414,6 @@ _HOWTO
|
||||
use Getopt::Long;
|
||||
use Sys::Hostname;
|
||||
use IPC::Open3;
|
||||
#use CGI; #moved to use of CGI by monty
|
||||
|
||||
|
||||
# ****************************
|
||||
@ -527,7 +526,7 @@ if ($MySQLaccess::CMD) { #command-line version
|
||||
}
|
||||
}
|
||||
if ($MySQLaccess::CGI) { #CGI-version
|
||||
use CGI;
|
||||
require CGI;
|
||||
$Q = new CGI;
|
||||
$Param{'help'} = $Q->param('help') ;
|
||||
$Param{'host'} = $Q->param('host') || $Q->param('h') || $Param{'host'};
|
||||
|
Reference in New Issue
Block a user