summaryrefslogtreecommitdiff
path: root/sql/ha_innodb.h
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-11-09 04:06:44 +0200
committermonty@mysql.com <>2004-11-09 04:06:44 +0200
commit87af3d9113cac7dca7355b8e01fc3a734c7b9e1d (patch)
treea936b651bfe5aa74bd01c17224531d16117c29d9 /sql/ha_innodb.h
parenta3f4bd28ace3b80dcc6c908e7de1b998c52b0e59 (diff)
parent2bba55b57fba78b018fe3ed64bafb7ea4b0c9d5c (diff)
downloadmariadb-git-87af3d9113cac7dca7355b8e01fc3a734c7b9e1d.tar.gz
merge on pull
Diffstat (limited to 'sql/ha_innodb.h')
-rw-r--r--sql/ha_innodb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/ha_innodb.h b/sql/ha_innodb.h
index b74af1db90b..7e337afed0e 100644
--- a/sql/ha_innodb.h
+++ b/sql/ha_innodb.h
@@ -64,6 +64,7 @@ class ha_innobase: public handler
uint last_match_mode;/* match mode of the latest search:
ROW_SEL_EXACT, ROW_SEL_EXACT_PREFIX,
or undefined */
+ uint num_write_row; /* number of write_row() calls */
longlong auto_inc_counter_for_this_stat;
ulong max_supported_row_length(const byte *buf);
@@ -85,7 +86,8 @@ class ha_innobase: public handler
HA_PRIMARY_KEY_IN_READ_INDEX |
HA_TABLE_SCAN_ON_INDEX),
last_dup_key((uint) -1),
- start_of_scan(0)
+ start_of_scan(0),
+ num_write_row(0)
{
}
~ha_innobase() {}