Commit a0e93bce authored by Sergei Golubchik's avatar Sergei Golubchik

innodb/xtradb: update nonnull attributes to match the new semantics

parent 4da7aa55
...@@ -448,7 +448,7 @@ btr_root_raise_and_insert( ...@@ -448,7 +448,7 @@ btr_root_raise_and_insert(
const dtuple_t* tuple, /*!< in: tuple to insert */ const dtuple_t* tuple, /*!< in: tuple to insert */
ulint n_ext, /*!< in: number of externally stored columns */ ulint n_ext, /*!< in: number of externally stored columns */
mtr_t* mtr) /*!< in: mtr */ mtr_t* mtr) /*!< in: mtr */
__attribute__((nonnull, warn_unused_result)); __attribute__((nonnull(2,3,4,7), warn_unused_result));
/*************************************************************//** /*************************************************************//**
Reorganizes an index page. Reorganizes an index page.
...@@ -543,7 +543,7 @@ btr_page_split_and_insert( ...@@ -543,7 +543,7 @@ btr_page_split_and_insert(
const dtuple_t* tuple, /*!< in: tuple to insert */ const dtuple_t* tuple, /*!< in: tuple to insert */
ulint n_ext, /*!< in: number of externally stored columns */ ulint n_ext, /*!< in: number of externally stored columns */
mtr_t* mtr) /*!< in: mtr */ mtr_t* mtr) /*!< in: mtr */
__attribute__((nonnull, warn_unused_result)); __attribute__((nonnull(2,3,4,7), warn_unused_result));
/*******************************************************//** /*******************************************************//**
Inserts a data tuple to a tree on a non-leaf level. It is assumed Inserts a data tuple to a tree on a non-leaf level. It is assumed
that mtr holds an x-latch on the tree. */ that mtr holds an x-latch on the tree. */
......
...@@ -451,7 +451,7 @@ btr_root_raise_and_insert( ...@@ -451,7 +451,7 @@ btr_root_raise_and_insert(
const dtuple_t* tuple, /*!< in: tuple to insert */ const dtuple_t* tuple, /*!< in: tuple to insert */
ulint n_ext, /*!< in: number of externally stored columns */ ulint n_ext, /*!< in: number of externally stored columns */
mtr_t* mtr) /*!< in: mtr */ mtr_t* mtr) /*!< in: mtr */
__attribute__((nonnull, warn_unused_result)); __attribute__((nonnull(2,3,4,7), warn_unused_result));
/*************************************************************//** /*************************************************************//**
Reorganizes an index page. Reorganizes an index page.
...@@ -546,7 +546,7 @@ btr_page_split_and_insert( ...@@ -546,7 +546,7 @@ btr_page_split_and_insert(
const dtuple_t* tuple, /*!< in: tuple to insert */ const dtuple_t* tuple, /*!< in: tuple to insert */
ulint n_ext, /*!< in: number of externally stored columns */ ulint n_ext, /*!< in: number of externally stored columns */
mtr_t* mtr) /*!< in: mtr */ mtr_t* mtr) /*!< in: mtr */
__attribute__((nonnull, warn_unused_result)); __attribute__((nonnull(2,3,4,7), warn_unused_result));
/*******************************************************//** /*******************************************************//**
Inserts a data tuple to a tree on a non-leaf level. It is assumed Inserts a data tuple to a tree on a non-leaf level. It is assumed
that mtr holds an x-latch on the tree. */ that mtr holds an x-latch on the tree. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment