204 ut_ad(mtr !=
nullptr);
212 ut_ad(mtr !=
nullptr);
265 uint32_t offset =
static_cast<uint32_t
>(
begin_data());
350 ut_ad(mtr !=
nullptr);
453 return (!(
flags & 0x01));
505 for (
ulint i = 0; i <
n; ++i) {
550 std::ostream &
print(std::ostream &out)
const;
609 static const uint32_t FREQ = 50;
610 static std::atomic<uint32_t>
n{0};
613 if (++
n % FREQ == 0) {
657 return (obj.
print(out));
uint32_t space_id_t
Tablespace identifier.
Definition: api0api.h:50
uint32_t page_no_t
Page number.
Definition: api0api.h:48
Kerberos Client Authentication nullptr
Definition: auth_kerberos_client_plugin.cc:250
static buf_frame_t * buf_block_get_frame(const buf_block_t *block)
Gets a pointer to the memory frame of a block.
buf_block_t * buf_page_get(const page_id_t &id, const page_size_t &size, ulint latch, ut::Location location, mtr_t *mtr)
NOTE! The following macros should be used instead of buf_page_get_gen, to improve debugging.
Definition: buf0buf.h:440
page_id_t id
Page id.
Definition: buf0buf.h:1379
Page identifier.
Definition: buf0types.h:206
page_no_t page_no() const
Retrieve the page number.
Definition: buf0types.h:242
Page size descriptor.
Definition: page0size.h:49
size_t physical() const
Retrieve the physical page size (on-disk).
Definition: page0size.h:120
static const page_size_t dict_table_page_size(const dict_table_t *table)
Get the table page size.
static space_id_t dict_index_get_space(const dict_index_t *index)
Gets the space id of the root of the index tree.
uint16_t page_type_t
Definition: fil0fil.h:1208
constexpr page_no_t FIL_NULL
'null' (undefined) page offset in the context of file spaces
Definition: fil0fil.h:1146
constexpr page_type_t FIL_PAGE_TYPE_UNKNOWN
In old tablespaces, garbage in FIL_PAGE_TYPE is replaced with this value when flushing pages.
Definition: fil0fil.h:1262
constexpr page_type_t FIL_PAGE_TYPE_ZLOB_FIRST
The first page of a compressed LOB.
Definition: fil0fil.h:1298
The low-level file system page header & trailer offsets.
constexpr uint32_t FIL_PAGE_TYPE
file page type: FIL_PAGE_INDEX,..., 2 bytes.
Definition: fil0types.h:75
constexpr uint32_t FIL_PAGE_DATA
start of the data on the page
Definition: fil0types.h:110
constexpr uint32_t FIL_PAGE_SPACE_ID
alias for space id
Definition: fil0types.h:107
constexpr uint32_t FIL_PAGE_NEXT
if there is a 'natural' successor of the page, its offset.
Definition: fil0types.h:60
constexpr uint32_t FIL_PAGE_PREV
if there is a 'natural' predecessor of the page, its offset.
Definition: fil0types.h:50
constexpr uint32_t FIL_PAGE_DATA_END
size of the page trailer
Definition: fil0types.h:118
static byte * fut_get_ptr(space_id_t space, const page_size_t &page_size, fil_addr_t addr, rw_lock_type_t rw_latch, mtr_t *mtr, buf_block_t **ptr_block=nullptr)
Gets a pointer to a file address and latches the page.
File-based list utilities.
constexpr ulint FLST_BASE_NODE_SIZE
Definition: fut0lst.h:49
byte flst_base_node_t
Definition: fut0lst.h:45
static ulint flst_get_len(const flst_base_node_t *base)
Get the length of a list.
static void flst_init(flst_base_node_t *base, mtr_t *mtr)
Initializes a list base node.
byte flst_node_t
Definition: fut0lst.h:46
static int flags[50]
Definition: hp_test1.cc:39
static uint16_t mach_read_from_2(const byte *b)
The following function is used to fetch data from 2 consecutive bytes.
static uint32_t mach_read_from_4(const byte *b)
The following function is used to fetch data from 4 consecutive bytes.
static uint8_t mach_read_from_1(const byte *b)
The following function is used to fetch data from one byte.
static void mach_write_to_6(byte *b, uint64_t id)
The following function is used to store data in 6 consecutive bytes.
static uint64_t mach_read_from_6(const byte *b)
The following function is used to fetch data from 6 consecutive bytes.
void mlog_log_string(byte *ptr, ulint len, mtr_t *mtr)
Logs a write of a string to a file page buffered in the buffer pool.
Definition: mtr0log.cc:344
void mlog_write_ulint(byte *ptr, ulint val, mlog_id_t type, mtr_t *mtr)
Writes 1, 2 or 4 bytes to a file page.
Definition: mtr0log.cc:255
#define mtr_commit(m)
Commit a mini-transaction.
Definition: mtr0mtr.h:58
#define mtr_memo_contains(m, o, t)
Check if memo contains the given item.
Definition: mtr0mtr.h:106
#define mtr_start(m)
Start a mini-transaction.
Definition: mtr0mtr.h:49
#define mtr_read_ulint(p, t, m)
Read 1 - 4 bytes from a file page buffered in the buffer pool.
Definition: mtr0mtr.h:86
@ MLOG_4BYTES
4 bytes ...
Definition: mtr0types.h:75
@ MLOG_1BYTE
one byte is written
Definition: mtr0types.h:69
@ MLOG_2BYTES
2 bytes ...
Definition: mtr0types.h:72
@ MTR_MEMO_PAGE_X_FIX
Definition: mtr0types.h:272
Provides the large objects (LOB) module.
Definition: lob0del.h:31
ulint frag_id_t
Definition: lob0impl.h:488
std::ostream & operator<<(std::ostream &out, const plist_node_t &obj)
Definition: lob0impl.h:238
Definition: completion_hash.h:34
The buffer control block structure.
Definition: buf0buf.h:1750
buf_page_t page
page information; this must be the first field, so that buf_pool->page_hash can point to buf_page_t o...
Definition: buf0buf.h:1756
page_no_t get_prev_page_no() const
Get the prev page number of the current buffer block.
Definition: buf0buf.h:1948
Data structure for an index.
Definition: dict0mem.h:1045
dict_table_t * table
back pointer to table
Definition: dict0mem.h:1059
page_size_t get_page_size() const
Get the page size of the tablespace to which this index belongs.
Definition: dict0mem.cc:894
File space address.
Definition: fil0fil.h:1163
The first page of an zlob.
Definition: zlob0first.h:37
std::ostream & print_frag_entries(std::ostream &out) const
Print the index entries.
Definition: zlob0first.cc:144
void restart_mtr(mtr_t *mtr)
Restart the given mtr.
Definition: zlob0first.h:630
void set_page_type_unknown()
Set the page type to FIL_PAGE_TYPE_UNKNOWN.
Definition: zlob0first.h:395
void init_lob_version()
Initialize the LOB version to 1.
Definition: zlob0first.h:429
uint32_t incr_lob_version()
Increment LOB version by 1.
Definition: zlob0first.cc:454
void set_data_len(ulint len)
Definition: zlob0first.h:407
void set_frag_node_page_no(page_no_t page_no)
All the frag node pages (.
Definition: zlob0first.h:339
ulint get_n_frag_entries() const
Given the page size, what is the number of frag entries the first page can contain.
Definition: zlob0first.cc:64
static const ulint OFFSET_INDEX_PAGE_NO
The next index page.
Definition: zlob0first.h:61
buf_block_t * get_block() const
Get the buffer block of the first page of LOB.
Definition: zlob0first.h:622
size_t free_all_frag_pages()
Free all the fragment pages.
Definition: zlob0first.cc:644
static const ulint OFFSET_LAST_UNDO_NO
The last transaction that modified this LOB.
Definition: zlob0first.h:52
z_first_page_t(buf_block_t *block)
Definition: zlob0first.h:136
page_no_t get_index_page_no() const
All the index pages are singly linked with each other, and the first page contains the link to one in...
Definition: zlob0first.h:289
void init_frag_entries()
Definition: zlob0first.h:502
size_t free_all_frag_pages_old()
Free all the fragment pages when the next page of the first LOB page IS NOT USED to link the fragment...
Definition: zlob0first.cc:589
size_t make_empty()
Free all the pages of the zlob except the first page.
Definition: zlob0first.cc:687
void set_prev_page_no(page_no_t page_no, mtr_t *mtr)
Set the FIL_PAGE_PREV to the given value.
Definition: zlob0first.h:211
static const ulint OFFSET_INDEX_BEGIN
Begin of index entries.
Definition: zlob0first.h:81
static const ulint OFFSET_DATA_LEN
The length of compressed data stored in this page.
Definition: zlob0first.h:55
flst_node_t * addr2ptr_s(fil_addr_t &addr)
Load the page, in s-latch mode, containing the given file address.
Definition: zlob0first.h:574
size_t free_all_frag_node_pages()
Free all the z_frag_page_t pages.
Definition: zlob0first.cc:336
ulint size_of_index_entries() const
Definition: zlob0first.cc:398
void init()
Definition: zlob0first.h:224
uint32_t get_lob_version()
Get the LOB version.
Definition: zlob0first.h:437
bool validate()
Validate the LOB.
Definition: zlob0first.h:608
bool is_empty() const
Definition: zlob0first.h:106
size_t free_all_index_pages()
Free all the index pages.
Definition: zlob0first.cc:369
void dealloc()
Deallocate the first page of a compressed LOB.
Definition: zlob0first.cc:423
void set_last_trx_id_no_redo(trx_id_t tid)
Update the last transaction identifier in the header, without generating redo logs.
Definition: zlob0first.h:470
buf_block_t * m_block
The buffer block of the first page.
Definition: zlob0first.h:641
void set_prev_page_null()
Set the FIL_PAGE_PREV to FIL_NULL.
Definition: zlob0first.h:198
bool verify_frag_page_no()
Verify that the page number pointed to by FIL_PAGE_PREV of the first page of LOB is indeed a fragment...
Definition: zlob0first.cc:697
page_no_t get_frag_node_page_no()
All the frag node pages are singly linked with each other, and the first page contains the link to on...
Definition: zlob0first.h:389
buf_block_t * alloc(bool bulk)
Definition: zlob0first.cc:89
void set_mtr(mtr_t *mtr)
Definition: zlob0first.h:625
flst_node_t * addr2ptr_x(fil_addr_t &addr) const
Load the page, in x-latch mode, containing the given file address.
Definition: zlob0first.h:557
static const ulint OFFSET_FRAG_LIST
List of frag entries.
Definition: zlob0first.h:77
void set_next_page_null()
Set the FIL_PAGE_NEXT to FIL_NULL.
Definition: zlob0first.h:195
size_t free_all_data_pages()
Free all the data pages.
Definition: zlob0first.cc:485
z_frag_entry_t alloc_frag_entry(bool bulk)
Allocate one frag page entry.
Definition: zlob0first.cc:192
void set_next_page_no(page_no_t page_no, mtr_t *mtr)
Set the FIL_PAGE_NEXT to the given value.
Definition: zlob0first.h:203
void set_version_0()
Definition: zlob0first.h:118
void set_trx_id(trx_id_t tid)
Update the trx id in the header.
Definition: zlob0first.h:414
flst_node_t * addr2ptr_x(fil_addr_t &addr, mtr_t *mtr) const
Load the page, in x-latch mode, containing the given file address.
Definition: zlob0first.h:565
static const ulint OFFSET_FLAGS
One byte of flag bits.
Definition: zlob0first.h:43
ulint get_n_index_entries() const
Given the page size, what is the number of index entries the first page can contain.
Definition: zlob0first.cc:36
page_type_t get_page_type() const
Definition: zlob0first.h:145
page_id_t get_page_id() const
Get the page id of the first page of compressed LOB.
Definition: zlob0first.h:257
flst_base_node_t * frag_list() const
Definition: zlob0first.h:500
void set_last_trx_id(trx_id_t tid)
Definition: zlob0first.h:461
static const ulint OFFSET_TRX_ID
The transaction that created data in the data portion.
Definition: zlob0first.h:58
flst_base_node_t * free_list() const
Definition: zlob0first.h:492
ulint begin_data() const
Definition: zlob0first.h:102
bool validate_low()
Validate the LOB.
Definition: zlob0first.cc:532
static const uint32_t OFFSET_LOB_VERSION
LOB version.
Definition: zlob0first.h:46
byte * begin_data_ptr() const
Definition: zlob0first.h:122
page_no_t get_page_no() const
Get the page number.
Definition: zlob0first.h:253
void set_space_id_no_redo(space_id_t space_id)
Write the space identifier to the page header, without generating redo log records.
Definition: zlob0first.h:219
mtr_t * m_mtr
The mini-transaction context.
Definition: zlob0first.h:644
undo_no_t get_last_trx_undo_no() const
Definition: zlob0first.h:487
void set_frag_page_no(mtr_t *mtr, page_no_t page_no)
All the fragment pages (.
Definition: zlob0first.h:320
ulint get_index_list_length() const
Get the length of the index list.
Definition: zlob0first.h:113
size_t destroy()
Free all the pages of the zlob.
Definition: zlob0first.cc:680
dict_index_t * m_index
The index dictionary object.
Definition: zlob0first.h:647
z_index_entry_t alloc_index_entry(bool bulk)
Allocate one index entry.
Definition: zlob0first.cc:167
static const ulint OFFSET_FREE_LIST
List of free index entries.
Definition: zlob0first.h:67
static const ulint OFFSET_FRAG_NODES_PAGE_NO
The next frag nodes page.
Definition: zlob0first.h:64
page_no_t get_frag_page_no() const
All the fragment pages are doubly linked with each other, and the first page contains the link to one...
Definition: zlob0first.h:297
size_t free_all_frag_pages_new()
Free all the fragment pages when the next page of the first LOB page IS USED to link the fragment pag...
Definition: zlob0first.cc:654
static const ulint OFFSET_FREE_FRAG_LIST
List of free frag entries.
Definition: zlob0first.h:73
static const ulint OFFSET_INDEX_LIST
List of index entries.
Definition: zlob0first.h:70
buf_block_t * load_s(page_no_t page_no)
Load the given page number as the first page in s-latch mode.
Definition: zlob0first.h:181
z_first_page_t(mtr_t *mtr, dict_index_t *index)
Definition: zlob0first.h:133
z_first_page_t()
Definition: zlob0first.h:131
z_first_page_t(buf_block_t *block, mtr_t *mtr, dict_index_t *index)
Definition: zlob0first.h:138
void set_last_trx_undo_no(undo_no_t undo_no)
Definition: zlob0first.h:475
void set_index_page_no(page_no_t page_no)
All the index pages are singly linked with each other, and the first page contains the link to one in...
Definition: zlob0first.h:272
bool can_be_partially_updated()
When the bit is set, the LOB is not partially updatable anymore.
Definition: zlob0first.h:451
static const ulint OFFSET_LAST_TRX_ID
The last transaction that modified this LOB.
Definition: zlob0first.h:49
flst_base_node_t * index_list() const
Definition: zlob0first.h:494
uint8_t get_flags()
Get one byte of flags.
Definition: zlob0first.h:446
flst_base_node_t * free_frag_list() const
Definition: zlob0first.h:496
void set_page_type()
Definition: zlob0first.h:401
void mark_cannot_be_partially_updated(trx_t *trx)
When the bit is set, the LOB is not partially updatable anymore.
Definition: zlob0first.cc:467
fil_addr_t get_self_addr() const
Definition: zlob0first.h:263
void load_entry_s(fil_addr_t &addr, z_index_entry_t &entry)
Load the entry available in the given file address.
Definition: zlob0first.cc:414
ulint payload()
Amount of zlob data that can be stored in first page (in bytes).
Definition: zlob0first.h:125
frag_id_t alloc_fragment(bool bulk, ulint len, z_frag_page_t &frag_page, z_frag_entry_t &entry)
Allocate a fragment of the given size.
Definition: zlob0first.cc:215
void load_entry_x(fil_addr_t &addr, z_index_entry_t &entry)
Load the entry available in the given file address.
Definition: zlob0first.cc:418
void set_frag_node_page_no(page_no_t page_no, mtr_t *mtr)
All the frag node pages (.
Definition: zlob0first.h:349
std::ostream & print_index_entries(std::ostream &out) const
Print the index entries.
Definition: zlob0first.cc:106
trx_id_t get_last_trx_id() const
Definition: zlob0first.h:482
page_no_t get_frag_page_no(mtr_t *mtr) const
All the fragment pages are doubly linked with each other, and the first page contains the link to one...
Definition: zlob0first.h:304
ulint begin_frag_entries() const
Definition: zlob0first.h:98
void init_index_entries()
Definition: zlob0first.cc:402
void set_index_page_no(page_no_t page_no, mtr_t *mtr)
All the index pages are singly linked with each other, and the first page contains the link to one in...
Definition: zlob0first.h:280
void set_trx_id_no_redo(trx_id_t tid)
Update the trx id in the header, without generating redo log records.
Definition: zlob0first.h:423
byte * frame() const
Definition: zlob0first.h:552
static const ulint OFFSET_VERSION
Version information.
Definition: zlob0first.h:39
void set_frag_page_no(page_no_t page_no)
All the fragment pages (.
Definition: zlob0first.h:329
buf_block_t * load_x(mtr_t *mtr) const
Load the first page using given mini-transaction.
Definition: zlob0first.h:164
ulint get_data_len() const
Get the amount of zlob data stored in this page.
Definition: zlob0first.h:248
ulint size_of_frag_entries() const
Definition: zlob0first.h:94
std::ostream & print(std::ostream &out) const
Print the page.
Definition: zlob0first.cc:327
buf_block_t * load_x(page_no_t page_no)
Load the given page number as the first page in x-latch mode.
Definition: zlob0first.h:152
An entry representing one fragment page.
Definition: lob0impl.h:554
void init()
Initialize the fragment entry contents.
Definition: lob0impl.h:592
static const ulint SIZE
Total size of one frag entry.
Definition: lob0impl.h:578
void push_back(flst_base_node_t *bnode)
Add this node as the last node in the given list.
Definition: lob0impl.h:637
The fragment page.
Definition: lob0impl.h:1351
An index entry pointing to one zlib stream.
Definition: zlob0index.h:86
Mini-transaction handle and buffer.
Definition: mtr0mtr.h:176
mtr_log_t set_log_mode(mtr_log_t mode)
Change the logging mode.
Definition: mtr0mtr.cc:467
mtr_log_t get_log_mode() const
Get the logging mode.
Definition: mtr0mtr.ic:152
Definition: trx0trx.h:683
@ RW_X_LATCH
Definition: sync0rw.h:98
@ RW_S_LATCH
Definition: sync0rw.h:97
ib_id_t undo_no_t
Undo number.
Definition: trx0types.h:141
ib_id_t trx_id_t
Transaction identifier (DB_TRX_ID, DATA_TRX_ID)
Definition: trx0types.h:137
Version control for database, common definitions, and include files.
unsigned long int ulint
Definition: univ.i:405
#define UT_LOCATION_HERE
Definition: ut0core.h:72
#define ut_ad(EXPR)
Debug assertion.
Definition: ut0dbg.h:68
int n
Definition: xcom_base.cc:508