diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-11-17 08:15:53 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-11-17 08:15:53 +0000 |
commit | 1700bf3844b5504fbde8c575968f867c30a76a8e (patch) | |
tree | 67369ea34bbe01c4c5efaf4864b2af48affa7204 /sql/sql_class.h | |
parent | 0acc6f83b2d0fae4bf3306e73c1de607f05feadd (diff) | |
download | mariadb-git-1700bf3844b5504fbde8c575968f867c30a76a8e.tar.gz |
Enabled usage of new system variables for ndb
- ndb_use_exact_count
- ndb_autoincrement_prefetch_sz
- ndb_use_transactions
- ndb_force_send
moved "inlined" functions to .cc file since they are virtual anyways
enabled printout od ndb errors in warnings even if mapping existst to mysql error code
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 312d9de9794..d0d9afc7746 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -399,6 +399,12 @@ struct system_variables #ifdef HAVE_INNOBASE_DB my_bool innodb_table_locks; #endif /* HAVE_INNOBASE_DB */ +#ifdef HAVE_NDBCLUSTER_DB + ulong ndb_autoincrement_prefetch_sz; + my_bool ndb_force_send; + my_bool ndb_use_exact_count; + my_bool ndb_use_transactions; +#endif /* HAVE_NDBCLUSTER_DB */ my_bool old_passwords; /* Only charset part of these variables is sensible */ |