summaryrefslogtreecommitdiff
path: root/storage/csv
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mnogosearch.org>2013-12-12 19:18:49 +0400
committerAlexander Barkov <bar@mnogosearch.org>2013-12-12 19:18:49 +0400
commit1345a759229c3b42d54db5d0b7a276dece838fb8 (patch)
treec5e3d314d97fd2b4ca81e8945508d29770d6acb7 /storage/csv
parent67f514382b18356a981ac5023276aa1c5e11481f (diff)
downloadmariadb-git-1345a759229c3b42d54db5d0b7a276dece838fb8.tar.gz
MroongaSE: addint thd_autoinc and thd_error_context plugin services
Diffstat (limited to 'storage/csv')
-rw-r--r--storage/csv/ha_tina.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/csv/ha_tina.cc b/storage/csv/ha_tina.cc
index b49cb3fc5ab..c5e53cb7354 100644
--- a/storage/csv/ha_tina.cc
+++ b/storage/csv/ha_tina.cc
@@ -1500,7 +1500,7 @@ int ha_tina::repair(THD* thd, HA_CHECK_OPT* check_opt)
/* Read the file row-by-row. If everything is ok, repair is not needed. */
while (!(rc= find_current_row(buf)))
{
- thd_inc_row_count(thd);
+ thd_inc_error_row(thd);
rows_repaired++;
current_position= next_position;
}
@@ -1714,7 +1714,7 @@ int ha_tina::check(THD* thd, HA_CHECK_OPT* check_opt)
/* Read the file row-by-row. If everything is ok, repair is not needed. */
while (!(rc= find_current_row(buf)))
{
- thd_inc_row_count(thd);
+ thd_inc_error_row(thd);
count--;
current_position= next_position;
}