diff options
author | brian@brian-akers-computer.local <> | 2004-04-05 22:57:53 -0700 |
---|---|---|
committer | brian@brian-akers-computer.local <> | 2004-04-05 22:57:53 -0700 |
commit | abb40bace91ec1c22a8ea468c4d07867a48541bb (patch) | |
tree | f2bb7ef57b18ea65abe2c8eb05d12a012e5d2f16 /include/my_base.h | |
parent | e1527cd7ec1c8275e55e930926a30732907a2868 (diff) | |
download | mariadb-git-abb40bace91ec1c22a8ea468c4d07867a48541bb.tar.gz |
ha_example.h:
Fixed spelling of example share and fxed indention.
ha_example.cc:
Fixed spelling of example and removed a few unneeded printf pieces.
my_base.h:
Adde HA_ERR_NOT_IMPLEMENTED at Monty's request
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/my_base.h b/include/my_base.h index d23a70b8a55..530c99ffbdb 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -364,4 +364,7 @@ typedef ulong ha_rows; #define MAX_FILE_SIZE LONGLONG_MAX #endif +/* Currently used for saying which interfaces a Storage Engine implements */ +#define HA_ERR_NOT_IMPLEMENTED -1 + #endif /* _my_base_h */ |