mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
branches/zip: rec_get_offsets_reverse(): Fix the type of the parameter
node_ptr.
This commit is contained in:
parent
2a77ce2769
commit
f1706a1355
2 changed files with 2 additions and 2 deletions
|
@ -362,7 +362,7 @@ rec_get_offsets_reverse(
|
|||
in reverse order, excluding the fixed-size
|
||||
REC_N_NEW_EXTRA_BYTES */
|
||||
dict_index_t* index, /* in: record descriptor */
|
||||
ibool node_ptr,/* in: TRUE=node pointer, FALSE=leaf node */
|
||||
ulint node_ptr,/* in: nonzero=node pointer, 0=leaf node */
|
||||
ulint* offsets);/* in/out: array consisting of offsets[0]
|
||||
allocated elements */
|
||||
|
||||
|
|
|
@ -540,7 +540,7 @@ rec_get_offsets_reverse(
|
|||
in reverse order, excluding the fixed-size
|
||||
REC_N_NEW_EXTRA_BYTES */
|
||||
dict_index_t* index, /* in: record descriptor */
|
||||
ibool node_ptr,/* in: TRUE=node pointer, FALSE=leaf node */
|
||||
ulint node_ptr,/* in: nonzero=node pointer, 0=leaf node */
|
||||
ulint* offsets)/* in/out: array consisting of offsets[0]
|
||||
allocated elements */
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue