summaryrefslogtreecommitdiff
path: root/innobase/include
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-01-02 21:29:41 +0200
committermonty@hundin.mysql.fi <>2002-01-02 21:29:41 +0200
commit4b877e0088e6f32a606ffaa0fb3c94afb0b24388 (patch)
treeef8afaf7a0fed42b30ef0d9d38acccc992b5f87d /innobase/include
parent5b77e3391050f1f585ab28816ad31761d93e8264 (diff)
downloadmariadb-git-4b877e0088e6f32a606ffaa0fb3c94afb0b24388.tar.gz
Added macros for nice TIMESPEC usage.
Fixes for building MySQL with gcc 3.0 Added SIGNED / UNSIGNED casts Fixed core dump bug in net_clear() with libmysqld. Back to using semaphores in query cache. Added 'Null' and 'Index_type' to SHOW INDEX.
Diffstat (limited to 'innobase/include')
-rw-r--r--innobase/include/dyn0dyn.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/innobase/include/dyn0dyn.h b/innobase/include/dyn0dyn.h
index 07ad8539b38..332622b6d4c 100644
--- a/innobase/include/dyn0dyn.h
+++ b/innobase/include/dyn0dyn.h
@@ -18,7 +18,12 @@ typedef dyn_block_t dyn_array_t;
/* Initial 'payload' size in bytes in a dynamic array block */
+#ifndef _AIX
#define DYN_ARRAY_DATA_SIZE 1024
+#else
+/* AIX has a quite small stack / thread */
+#define DYN_ARRAY_DATA_SIZE 128
+#endif
/*************************************************************************
Initializes a dynamic array. */