1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

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
This commit is contained in:
unknown
2002-03-22 01:03:34 +02:00
parent b70f53b289
commit a333c33f7e
5 changed files with 13 additions and 19 deletions

View File

@@ -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)