mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
5.6.37
This commit is contained in:
parent
0af9818240
commit
d36bd69790
7 changed files with 176 additions and 52 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/*****************************************************************************
|
||||
|
||||
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
||||
Copyright (c) 2000, 2017, 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
|
||||
|
|
@ -723,6 +723,8 @@ struct row_prebuilt_t {
|
|||
mem_heap_t* heap; /*!< memory heap from which
|
||||
these auxiliary structures are
|
||||
allocated when needed */
|
||||
mem_heap_t* cursor_heap; /*!< memory heap from which
|
||||
innodb_api_buf is allocated per session*/
|
||||
ins_node_t* ins_node; /*!< Innobase SQL insert node
|
||||
used to perform inserts
|
||||
to the table */
|
||||
|
|
@ -873,6 +875,9 @@ struct row_prebuilt_t {
|
|||
unsigned innodb_api:1; /*!< whether this is a InnoDB API
|
||||
query */
|
||||
const rec_t* innodb_api_rec; /*!< InnoDB API search result */
|
||||
void* innodb_api_buf; /*!< Buffer holding copy of the physical
|
||||
Innodb API search record */
|
||||
ulint innodb_api_rec_size; /*!< Size of the Innodb API record */
|
||||
byte* srch_key_val1; /*!< buffer used in converting
|
||||
search key values from MySQL format
|
||||
to InnoDB format.*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue