summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorSatya B <satya.bn@sun.com>2009-06-25 15:06:12 +0530
committerSatya B <satya.bn@sun.com>2009-06-25 15:06:12 +0530
commit0158cafab9275dcba4f718be1c92bbeb923ca26d (patch)
treea42c50f7bd840d625db8ae067778211a1a4756c8 /innobase
parent96c069142da6876014ff1515f59f1e2aba712273 (diff)
downloadmariadb-git-0158cafab9275dcba4f718be1c92bbeb923ca26d.tar.gz
Applying InnoDB snashot 5.0-ss5406, part 1. Fixes BUG#38479
BUG#38479 - valgrind warnings in show table status for innodb tables Detailed revision comments: r5080 | vasil | 2009-05-22 14:45:34 +0300 (Fri, 22 May 2009) | 6 lines branches/5.0: Fix Bug#38479 valgrind warnings in show table status for innodb tables by initializing prebuilt->hint_need_to_fetch_extra_cols.
Diffstat (limited to 'innobase')
-rw-r--r--innobase/row/row0mysql.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/innobase/row/row0mysql.c b/innobase/row/row0mysql.c
index d7213b25145..cab6a9ce272 100644
--- a/innobase/row/row0mysql.c
+++ b/innobase/row/row0mysql.c
@@ -625,7 +625,9 @@ row_create_prebuilt(
prebuilt->ins_node = NULL;
prebuilt->ins_upd_rec_buff = NULL;
-
+
+ prebuilt->hint_need_to_fetch_extra_cols = 0;
+
prebuilt->upd_node = NULL;
prebuilt->ins_graph = NULL;
prebuilt->upd_graph = NULL;