mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Merge 10.3 into 10.4
This commit is contained in:
commit
f84e28c119
73 changed files with 1270 additions and 447 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Copyright (c) 1994, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
||||
Copyright (c) 2012, Facebook Inc.
|
||||
Copyright (c) 2014, 2019, MariaDB Corporation.
|
||||
Copyright (c) 2014, 2021, MariaDB Corporation.
|
||||
|
||||
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
|
||||
|
|
@ -754,13 +754,14 @@ btr_validate_index(
|
|||
@param[in,out] page page to remove
|
||||
@param[in] index index tree
|
||||
@param[in,out] mtr mini-transaction */
|
||||
void
|
||||
dberr_t
|
||||
btr_level_list_remove_func(
|
||||
ulint space,
|
||||
ulint zip_size,
|
||||
page_t* page,
|
||||
dict_index_t* index,
|
||||
mtr_t* mtr);
|
||||
mtr_t* mtr)
|
||||
MY_ATTRIBUTE((warn_unused_result));
|
||||
|
||||
/*************************************************************//**
|
||||
Removes a page from the level list of pages.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*****************************************************************************
|
||||
|
||||
Copyright (C) 2013, 2019 MariaDB Corporation.
|
||||
Copyright (C) 2013, 2021, MariaDB Corporation.
|
||||
|
||||
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
|
||||
|
|
@ -49,7 +49,7 @@ ulint fil_page_compress(
|
|||
/** Decompress a page that may be subject to page_compressed compression.
|
||||
@param[in,out] tmp_buf temporary buffer (of innodb_page_size)
|
||||
@param[in,out] buf compressed page buffer
|
||||
@param[in] flags talespace flags
|
||||
@param[in] flags tablespace flags
|
||||
@return size of the compressed data
|
||||
@retval 0 if decompression failed
|
||||
@retval srv_page_size if the page was not compressed */
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/*****************************************************************************
|
||||
|
||||
Copyright (c) 1996, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
||||
Copyright (c) 2017, 2019, MariaDB Corporation.
|
||||
Copyright (c) 2017, 2021, MariaDB Corporation.
|
||||
|
||||
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
|
||||
|
|
@ -491,7 +491,6 @@ void
|
|||
pars_info_bind_id(
|
||||
/*=============*/
|
||||
pars_info_t* info, /*!< in: info struct */
|
||||
ibool copy_name,/* in: make a copy of name if TRUE */
|
||||
const char* name, /*!< in: name */
|
||||
const char* id); /*!< in: id */
|
||||
/****************************************************************//**
|
||||
|
|
@ -537,15 +536,6 @@ pars_info_bind_ull_literal(
|
|||
const ib_uint64_t* val) /*!< in: value */
|
||||
MY_ATTRIBUTE((nonnull));
|
||||
|
||||
/****************************************************************//**
|
||||
Add bound id. */
|
||||
void
|
||||
pars_info_add_id(
|
||||
/*=============*/
|
||||
pars_info_t* info, /*!< in: info struct */
|
||||
const char* name, /*!< in: name */
|
||||
const char* id); /*!< in: id */
|
||||
|
||||
/****************************************************************//**
|
||||
Get bound literal with the given name.
|
||||
@return bound literal, or NULL if not found */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue