diff options
author | monty@mysql.com <> | 2004-03-30 19:24:28 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-30 19:24:28 +0300 |
commit | f602829c7590e44e0c82ada24cab5c7cff7ebc63 (patch) | |
tree | 3ba6124dc8f91baccee6bbd806fe1056d021e326 /scripts/mysqlaccess.sh | |
parent | 4bc6b551f83844f01a2284efcf5cc982a9c959b3 (diff) | |
download | mariadb-git-f602829c7590e44e0c82ada24cab5c7cff7ebc63.tar.gz |
Fix to get correct metadata when using temporary tables to create result. (Bug #2654)
Diffstat (limited to 'scripts/mysqlaccess.sh')
-rw-r--r-- | scripts/mysqlaccess.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/mysqlaccess.sh b/scripts/mysqlaccess.sh index 75ef63ecdd0..9fd1f63f67a 100644 --- a/scripts/mysqlaccess.sh +++ b/scripts/mysqlaccess.sh @@ -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'}; |