diff options
author | unknown <guilhem@gbichot3.local> | 2006-10-10 16:59:50 +0200 |
---|---|---|
committer | unknown <guilhem@gbichot3.local> | 2006-10-10 16:59:50 +0200 |
commit | abdc4682cdcb26b6980d4999ab6137a53643afbd (patch) | |
tree | bd7955fb3af7ecb029891063d865ab76db91fcac /include/my_base.h | |
parent | ef0ee7642ad986551495bd891ad78bcdb11c7fcf (diff) | |
parent | 8e04cdb2dd1b5102e578c9c98b220a07857bfcbb (diff) | |
download | mariadb-git-abdc4682cdcb26b6980d4999ab6137a53643afbd.tar.gz |
Merge gbichot3.local:/home/mysql_src/mysql-5.1-clean
into gbichot3.local:/home/mysql_src/mysql-maria
BitKeeper/etc/ignore:
auto-union
BUILD/SETUP.sh:
Auto merged
Makefile.am:
Auto merged
configure.in:
Auto merged
config/ac-macros/plugins.m4:
Auto merged
storage/myisammrg/ha_myisammrg.h:
Auto merged
unittest/Makefile.am:
Auto merged
BitKeeper/triggers/post-commit:
merge
include/my_base.h:
merge
libmysqld/Makefile.am:
merge
mysql-test/mysql-test-run.pl:
merge
mysys/Makefile.am:
merge
sql/Makefile.am:
merge
sql/handler.h:
merge
sql/item_func.h:
merge
sql/mysql_priv.h:
merge
sql/mysqld.cc:
merge
sql/set_var.cc:
merge
sql/set_var.h:
merge
sql/sql_class.h:
merge
storage/csv/ha_tina.cc:
merge
storage/myisam/Makefile.am:
merge
storage/myisam/ha_myisam.cc:
merge
storage/myisam/ha_myisam.h:
merge
storage/myisam/mi_check.c:
merge
storage/myisam/mi_delete.c:
merge
storage/myisam/mi_dynrec.c:
merge
storage/myisam/mi_packrec.c:
merge
storage/myisam/mi_unique.c:
merge
storage/myisam/mi_write.c:
merge
storage/myisam/myisamdef.h:
merge
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h index 774ff4c8cd5..ccfc769b71f 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -15,7 +15,6 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* This file includes constants used with all databases */ -/* Author: Michael Widenius */ #ifndef _my_base_h #define _my_base_h @@ -487,4 +486,7 @@ typedef ulong ha_rows; #define HA_VARCHAR_PACKLENGTH(field_length) ((field_length) < 256 ? 1 :2) +/* invalidator function reference for Query Cache */ +typedef void (* invalidator_by_filename)(const char * filename); + #endif /* _my_base_h */ |