1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

- Windows compile fix for ha_blackhole.cc - use #include "mysql_priv.h" instead of

#include <mysql_priv.h>


sql/ha_blackhole.cc:
  - Windows compile fix - use #include "mysql_priv.h" instead of #include <mysql_priv.h>
This commit is contained in:
unknown
2005-05-07 22:04:10 +02:00
parent 04b938c9a4
commit 8222d259aa

View File

@ -19,7 +19,7 @@
#pragma implementation // gcc: Class implementation #pragma implementation // gcc: Class implementation
#endif #endif
#include <mysql_priv.h> #include "mysql_priv.h"
#ifdef HAVE_BLACKHOLE_DB #ifdef HAVE_BLACKHOLE_DB
#include "ha_blackhole.h" #include "ha_blackhole.h"