Commit e8d66a28 authored by unknown's avatar unknown

few small fixes


BitKeeper/etc/ignore:
  Added mysys/ste5KbMa to the ignore list
include/my_semaphore.h:
  A small fix for BSDi
sql/sql_update.cc:
  Just a proper error message
parent 3e7f12c8
......@@ -483,3 +483,4 @@ scripts/mysql_tableinfo
libmysql/net.c
libmysqld/sql_olap.cc
myisam/myisam.log
mysys/ste5KbMa
......@@ -32,11 +32,11 @@
#define _my_semaphore_h_
C_MODE_START
#ifdef HAVE_SEMAPHORE_H
#include <semaphore.h>
#elif defined(__bsdi__)
#include <sys/errno.h>
#else
#ifdef __WIN__
typedef HANDLE sem_t;
#else
......
......@@ -432,7 +432,7 @@ multi_update::prepare(List<Item> &values)
}
if (!table_ref)
{
error = 1; // A proper error message is due here
net_printf(&thd->net, ER_NOT_SUPPORTED_YET, "JOIN SYNTAX WITH MULTI-TABLE UPDATES");
DBUG_RETURN(1);
}
else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment