summaryrefslogtreecommitdiff
path: root/storage/innobase/include/row0row.ic
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/row0row.ic')
-rw-r--r--storage/innobase/include/row0row.ic11
1 files changed, 6 insertions, 5 deletions
diff --git a/storage/innobase/include/row0row.ic b/storage/innobase/include/row0row.ic
index ac62422be1f..08c0f18e95b 100644
--- a/storage/innobase/include/row0row.ic
+++ b/storage/innobase/include/row0row.ic
@@ -1,6 +1,6 @@
/*****************************************************************************
-Copyright (c) 1996, 2011, Oracle and/or its affiliates. All Rights Reserved.
+Copyright (c) 1996, 2015, Oracle and/or its affiliates. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
@@ -30,7 +30,7 @@ Created 4/20/1996 Heikki Tuuri
/*********************************************************************//**
Gets the offset of the DB_TRX_ID field, in bytes relative to the origin of
a clustered index record.
-@return offset of DATA_TRX_ID */
+@return offset of DATA_TRX_ID */
UNIV_INLINE
ulint
row_get_trx_id_offset(
@@ -56,7 +56,7 @@ row_get_trx_id_offset(
/*********************************************************************//**
Reads the trx id field from a clustered index record.
-@return value of the field */
+@return value of the field */
UNIV_INLINE
trx_id_t
row_get_rec_trx_id(
@@ -81,7 +81,7 @@ row_get_rec_trx_id(
/*********************************************************************//**
Reads the roll pointer field from a clustered index record.
-@return value of the field */
+@return value of the field */
UNIV_INLINE
roll_ptr_t
row_get_rec_roll_ptr(
@@ -126,7 +126,8 @@ row_build_index_entry(
dtuple_t* entry;
ut_ad(dtuple_check_typed(row));
- entry = row_build_index_entry_low(row, ext, index, heap);
+ entry = row_build_index_entry_low(row, ext, index, heap,
+ ROW_BUILD_NORMAL);
ut_ad(!entry || dtuple_check_typed(entry));
return(entry);
}