summaryrefslogtreecommitdiff
path: root/libmysqld
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-08-29 18:20:04 +0300
committermonty@hundin.mysql.fi <>2002-08-29 18:20:04 +0300
commit5aa46cafe35bde37e2e23de76624475944eb2dda (patch)
tree639b682a916bf0c0da738734e94c5305baef2c42 /libmysqld
parent6bebd251bcd168b52de0268c6b9d9a363b1ffa86 (diff)
downloadmariadb-git-5aa46cafe35bde37e2e23de76624475944eb2dda.tar.gz
Updated VC++ dsp files from windows build machine
Remove some compiler warnings when using VC++ Add InnoDB in normal MySQL binary for windows.
Diffstat (limited to 'libmysqld')
-rw-r--r--libmysqld/lib_load.cc44
1 files changed, 0 insertions, 44 deletions
diff --git a/libmysqld/lib_load.cc b/libmysqld/lib_load.cc
deleted file mode 100644
index 3db5a2488d1..00000000000
--- a/libmysqld/lib_load.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (c) 2000
- * SWsoft company
- *
- * This material is provided "as is", with absolutely no warranty expressed
- * or implied. Any use is at your own risk.
- *
- * Permission to use or copy this software for any purpose is hereby granted
- * without fee, provided the above notices are retained on all copies.
- * Permission to modify the code and to distribute modified code is granted,
- * provided the above notices are retained, and a notice that the code was
- * modified is included with the above copyright notice.
- *
- */
-/* Copy data from a textfile to table */
-
-#include "mysql_priv.h"
-#include <my_dir.h>
-#include <m_ctype.h>
-
-
-int
-mysql_load_internal(THD * thd, sql_exchange * ex, TABLE_LIST * table_list,
- List<Item> & fields, enum enum_duplicates handle_duplicates,
- bool read_file_from_client, thr_lock_type lock_type);
-
-int
-mysql_load(THD * thd, sql_exchange * ex, TABLE_LIST * table_list,
- List<Item> & fields, enum enum_duplicates handle_duplicates,
- bool read_file_from_client, thr_lock_type lock_type)
-{
- read_file_from_client = 0; //server is always in the same process
- return mysql_load_internal(thd, ex, table_list, fields, handle_duplicates,
- read_file_from_client, lock_type);
-}
-
-#define mysql_load mysql_load_internal
-
-
-#if defined (__WIN__)
-#include "../sql/sql_load.cpp"
-#else
-#include "../sql/sql_load.cc"
-#endif