diff options
author | unknown <magnus@neptunus.(none)> | 2004-04-30 13:42:47 +0200 |
---|---|---|
committer | unknown <magnus@neptunus.(none)> | 2004-04-30 13:42:47 +0200 |
commit | d540f0c011ade155ab2c9546f2f6ff65d47791b0 (patch) | |
tree | 96bc6aa795e9d00fddc66e0c1f0974c0c58fdcc7 /sql/ha_ndbcluster.h | |
parent | ddbef950cb9b5373ac5e04547f7fac20bde26398 (diff) | |
parent | 155f8b3d312351064370faf756bcae240514acf6 (diff) | |
download | mariadb-git-d540f0c011ade155ab2c9546f2f6ff65d47791b0.tar.gz |
Merge neptunus.(none):/home/magnus/mysql-4.1
into neptunus.(none):/home/magnus/mysql-4.1-insert
sql/ha_ndbcluster.cc:
Auto merged
sql/ha_ndbcluster.h:
Auto merged
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index e524cd8e4b3..f9109244492 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -132,6 +132,8 @@ class ha_ndbcluster: public handler const byte *end_key,uint end_key_len, enum ha_rkey_function end_search_flag); + void start_bulk_insert(ha_rows rows); + int end_bulk_insert(); static Ndb* seize_ndb(); static void release_ndb(Ndb* ndb); @@ -206,6 +208,9 @@ class ha_ndbcluster: public handler const char* m_unique_index_name[MAX_KEY]; NdbRecAttr *m_value[NDB_MAX_ATTRIBUTES_IN_TABLE]; bool m_use_write; + ha_rows rows_to_insert; + ha_rows rows_inserted; + ha_rows bulk_insert_rows; }; bool ndbcluster_init(void); |