summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-04-08 17:56:45 +0300
committerunknown <monty@mysql.com>2004-04-08 17:56:45 +0300
commit10e15762b8e38ae09d89e6489de6f2fe68cfd85e (patch)
tree1eb8cd825c2490f5f90d6e08cd2b0338ce489853 /sql/handler.h
parent46bd7be2409e80b36de3cd0d49af33557ffa74a9 (diff)
downloadmariadb-git-10e15762b8e38ae09d89e6489de6f2fe68cfd85e.tar.gz
Don't enable HA_EXTRA_WRITE_CACHE if too few rows
Revert main parts of patch for online index builds. Should be done differently Added support for %lx in my_snprintf() sql/ha_myisam.cc: Don't enable HA_EXTRA_WRITE_CACHE if too few rows sql/handler.h: Indentaion fix sql/mysql_priv.h: Removed real_alter_table, mysql_add_column and mysql_drop_column sql/sql_class.cc: After merge fix sql/sql_insert.cc: Don't user bulk_insert if only one row (common case) sql/sql_parse.cc: Added mysql_create_index() and mysql_drop_index() as these are only wrappers for mysql_alter_table() sql/sql_table.cc: Revert main parts of patch for online index builds Changed back to use tabs to make merges possible between trees sql/unireg.cc: Added comments and minor cleanup strings/my_vsnprintf.c: Added support for %lx. Proper long support
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/handler.h b/sql/handler.h
index f1bce5950c4..4cb6ab86a37 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -92,10 +92,10 @@
/*
- Bits in index_ddl_flags(KEY *wanted_index)
- for what ddl you can do with index
- If none is set, the wanted type of index is not supported
- by the handler at all. See WorkLog 1563.
+ Bits in index_ddl_flags(KEY *wanted_index)
+ for what ddl you can do with index
+ If none is set, the wanted type of index is not supported
+ by the handler at all. See WorkLog 1563.
*/
#define HA_DDL_SUPPORT 1 /* Supported by handler */
#define HA_DDL_WITH_LOCK 2 /* Can create/drop with locked table */