summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <venu@myvenu.com>2003-06-03 18:45:07 -0700
committerunknown <venu@myvenu.com>2003-06-03 18:45:07 -0700
commitfc59ec4eddbd4f6f518795dcd231b5343234350f (patch)
tree6c667c83f599e122fe20111ffc01bf244d774111 /sql
parentda9bf1dec30f9d1cda414d0a96ca93c11b1a77e7 (diff)
downloadmariadb-git-fc59ec4eddbd4f6f518795dcd231b5343234350f.tar.gz
Windows build fixups with the latest source
sql/item_cmpfunc.cc: Remove unused variables sql/mysqld.cc: fix the defination as this is different from the prototype (cl compiler failed) sql/sql_insert.cc: fix the windows error (without cast) sql/sql_show.cc: Remove unused variables include/config-win.h: Fix for Windows build to go (charsets + collation default defs) VC++Files/client/mysqlclient.dsp: Take care of newly added/removed files VC++Files/libmysql/libmysql.dsp: Take care of newly added/removed files VC++Files/sql/mysqld.dsp: Take care of newly added/removed files
Diffstat (limited to 'sql')
-rw-r--r--sql/item_cmpfunc.cc1
-rw-r--r--sql/mysqld.cc3
-rw-r--r--sql/sql_insert.cc2
-rw-r--r--sql/sql_show.cc2
4 files changed, 2 insertions, 6 deletions
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc
index 4f55357f288..3dbdc36a92d 100644
--- a/sql/item_cmpfunc.cc
+++ b/sql/item_cmpfunc.cc
@@ -246,7 +246,6 @@ void Item_bool_func2::fix_length_and_dec()
We must set cmp_charset here as we may be called from for an automatic
generated item, like in natural join
*/
-end:
set_cmp_charset(args[0]->charset(), args[0]->coercibility,
args[1]->charset(), args[1]->coercibility);
}
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 0f4e689d55b..5dc1c4159e5 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -423,7 +423,7 @@ Query_cache query_cache;
#endif
#ifdef HAVE_SMEM
char *shared_memory_base_name= default_shared_memory_base_name;
-my_bool opt_enable_shared_memory;
+bool opt_enable_shared_memory;
#endif
#include "sslopt-vars.h"
@@ -471,7 +471,6 @@ static void close_connections(void)
#ifdef EXTRA_DEBUG
int count=0;
#endif
- NET net;
DBUG_ENTER("close_connections");
/* Clear thread cache */
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc
index 1908f898a27..c3a399cd5a7 100644
--- a/sql/sql_insert.cc
+++ b/sql/sql_insert.cc
@@ -188,7 +188,7 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list,
if (duplic == DUP_UPDATE && !table->insert_values)
{
/* it should be allocated before Item::fix_fields() */
- table->insert_values=alloc_root(&table->mem_root, table->rec_buff_length);
+ table->insert_values=(byte *)alloc_root(&table->mem_root, table->rec_buff_length);
if (!table->insert_values)
goto abort;
}
diff --git a/sql/sql_show.cc b/sql/sql_show.cc
index 16934e33798..7cf4d1a9ff4 100644
--- a/sql/sql_show.cc
+++ b/sql/sql_show.cc
@@ -1449,7 +1449,6 @@ int mysqld_show_collations(THD *thd, const char *wild)
List<Item> field_list;
CHARSET_INFO **cs;
Protocol *protocol= thd->protocol;
- char flags[64];
DBUG_ENTER("mysqld_show_charsets");
@@ -1501,7 +1500,6 @@ int mysqld_show_charsets(THD *thd, const char *wild)
List<Item> field_list;
CHARSET_INFO **cs;
Protocol *protocol= thd->protocol;
- char flags[64];
DBUG_ENTER("mysqld_show_charsets");