1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixed multi-table-delete for InnoDB tables

Novell patches
This commit is contained in:
monty@mashka.mysql.fi
2003-02-17 02:14:37 +02:00
parent 153cefc61b
commit 6051b2f998
56 changed files with 288 additions and 179 deletions

View File

@@ -16,6 +16,8 @@
/* Wait until a program dies */
#ifndef __NETWARE__
#include <my_global.h>
#include <m_string.h>
#include <my_getopt.h>
@@ -101,3 +103,15 @@ void usage(void)
my_print_help(my_long_options);
exit(-1);
}
#else
#include <stdio.h>
main()
{
fprintf(stderr,"This tool has not been ported to NetWare\n");
return 0;
}
#endif /* __NETWARE__ */