diff options
author | unknown <marko@hundin.mysql.fi> | 2005-03-10 15:16:16 +0200 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2005-03-10 15:16:16 +0200 |
commit | 066e8900d63e85500b7f6a48b2cada93924aa600 (patch) | |
tree | ea08f06b68af52a8bab01638d9c412e1b2d239b5 /innobase/row/row0undo.c | |
parent | db32810d02ca5cae3a5619d5008923a197425e84 (diff) | |
download | mariadb-git-066e8900d63e85500b7f6a48b2cada93924aa600.tar.gz |
InnoDB: Introduce the symbols REC_OFFS_NORMAL_SIZE and
REC_OFFS_SMALL_SIZE for the initial allocation sizes of
arrays passed to rec_get_offsets().
innobase/btr/btr0btr.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/btr/btr0cur.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/btr/btr0sea.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/include/rem0rec.h:
Define REC_OFFS_NORMAL_SIZE and REC_OFFS_SMALL_SIZE.
innobase/lock/lock0lock.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/page/page0cur.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/page/page0page.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/rem/rem0rec.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/row/row0ins.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/row/row0mysql.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/row/row0purge.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/row/row0row.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/row/row0sel.c:
s/100/REC_OFFS_NORMAL_SIZE/
s/10/REC_OFFS_SMALL_SIZE/
innobase/row/row0undo.c:
s/100/REC_OFFS_NORMAL_SIZE/
innobase/row/row0upd.c:
s/100/REC_OFFS_NORMAL_SIZE/
s/10/REC_OFFS_SMALL_SIZE/
innobase/trx/trx0rec.c:
s/100/REC_OFFS_NORMAL_SIZE/
Diffstat (limited to 'innobase/row/row0undo.c')
-rw-r--r-- | innobase/row/row0undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/row/row0undo.c b/innobase/row/row0undo.c index 895303e361c..abe73cbe705 100644 --- a/innobase/row/row0undo.c +++ b/innobase/row/row0undo.c @@ -152,7 +152,7 @@ row_undo_search_clust_to_pcur( ibool ret; rec_t* rec; mem_heap_t* heap = NULL; - ulint offsets_[100]; + ulint offsets_[REC_OFFS_NORMAL_SIZE]; ulint* offsets = offsets_; *offsets_ = (sizeof offsets_) / sizeof *offsets_; |