diff options
author | unknown <monty@hundin.mysql.fi> | 2002-03-22 01:03:34 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-03-22 01:03:34 +0200 |
commit | a333c33f7e19ce0bc230ca32ce25063640df84cd (patch) | |
tree | 932b64f535192a08e083a9360ec58924df455417 /client | |
parent | b70f53b28940008233995d885584c2e0984e3bf4 (diff) | |
download | mariadb-git-a333c33f7e19ce0bc230ca32ce25063640df84cd.tar.gz |
Fix for load data infile when no active database
Fix for Solaris and gethostbyname_r
Docs/manual.texi:
Changelog
client/mysql.cc:
Cleanup
configure.in:
Fix for Solaris and gethostbyname_r
sql/log_event.h:
Fix for load data infile when no active database
sql/sql_load.cc:
Fix for load data infile when no active database
Diffstat (limited to 'client')
-rw-r--r-- | client/mysql.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 772444764c9..60e97bff621 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -764,17 +764,6 @@ static int get_options(int argc, char **argv) return(0); } -#if defined(OS2) -static char* readline( char* prompt) -{ -#if defined(OS2) - static char linebuffer[254]; -#endif - puts( prompt); - return gets( linebuffer); -} -#endif - static int read_lines(bool execute_commands) { #if defined( __WIN__) || defined(OS2) |