diff options
author | guilhem@mysql.com <> | 2006-06-02 22:22:59 +0200 |
---|---|---|
committer | guilhem@mysql.com <> | 2006-06-02 22:22:59 +0200 |
commit | 7921811e1f0466debd1bc1b64a9a482ff4ac8efb (patch) | |
tree | 025336cab0c9822d03d387ce26f536a8b0d0712e /sql/ha_ndbcluster.h | |
parent | 45ee32539cfce209b0237accdd8b2c52d8311b35 (diff) | |
parent | a4e778f34df373d117a66d3143849904a091734f (diff) | |
download | mariadb-git-7921811e1f0466debd1bc1b64a9a482ff4ac8efb.tar.gz |
Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/home/mysql_src/mysql-5.1-new-WL3146-handler
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index 3c8a4d260a3..985be17c1fb 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -803,7 +803,10 @@ private: int set_index_key(NdbOperation *, const KEY *key_info, const byte *key_ptr); void print_results(); - ulonglong get_auto_increment(); + virtual void get_auto_increment(ulonglong offset, ulonglong increment, + ulonglong nb_desired_values, + ulonglong *first_value, + ulonglong *nb_reserved_values); int ndb_err(NdbTransaction*); bool uses_blob_value(); @@ -865,7 +868,7 @@ private: bool m_primary_key_update; bool m_write_op; bool m_ignore_no_key; - ha_rows m_rows_to_insert; + ha_rows m_rows_to_insert; // TODO: merge it with handler::estimation_rows_to_insert? ha_rows m_rows_inserted; ha_rows m_bulk_insert_rows; ha_rows m_rows_changed; |