1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
|
/*****************************************************************************
Copyright (c) 2015, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License, version 2.0, as published by the
Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*****************************************************************************/
#include <sys/types.h>
#include "btr0pcur.h"
#include "fil0fil.h"
#include "lob0first.h"
#include "lob0inf.h"
#include "lob0lob.h"
#include "lob0zip.h"
#include "log0chkp.h"
#include "row0upd.h"
#include "zlob0first.h"
#include "my_dbug.h"
namespace lob {
/** A BLOB field reference has all the bits set to zero, except the "being
modified" bit. */
const byte field_ref_almost_zero[FIELD_REF_SIZE] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x20, 0, 0, 0, 0, 0, 0, 0,
};
#ifdef UNIV_DEBUG
bool ReadContext::assert_read_uncommitted() const {
ut_ad(m_trx == nullptr || m_trx->is_read_uncommitted());
return (true);
}
#endif /* UNIV_DEBUG */
ulint btr_rec_get_field_ref_offs(const dict_index_t *index,
const ulint *offsets, ulint n) {
ulint field_ref_offs;
ulint local_len;
ut_a(rec_offs_nth_extern(index, offsets, n));
field_ref_offs = rec_get_nth_field_offs(index, offsets, n, &local_len);
ut_a(rec_field_not_null_not_add_col_def(local_len));
ut_a(local_len >= BTR_EXTERN_FIELD_REF_SIZE);
return (field_ref_offs + local_len - BTR_EXTERN_FIELD_REF_SIZE);
}
/** Marks non-updated off-page fields as disowned by this record.
The ownership must be transferred to the updated record which is
inserted elsewhere in the index tree. In purge only the owner of
externally stored field is allowed to free the field.
@param[in] update update vector. */
void BtrContext::disown_inherited_fields(const upd_t *update) {
ut_ad(rec_offs_validate());
ut_ad(!rec_offs_comp(m_offsets) || !rec_get_node_ptr_flag(m_rec));
ut_ad(rec_offs_any_extern(m_offsets));
ut_ad(m_mtr);
for (ulint i = 0; i < rec_offs_n_fields(m_offsets); i++) {
if (rec_offs_nth_extern(m_index, m_offsets, i) &&
!upd_get_field_by_field_no(update, i, false)) {
set_ownership_of_extern_field(i, false);
}
}
}
/** When bulk load is being done, check if there is enough space in redo
log file. */
void BtrContext::check_redolog_bulk() {
ut_ad(is_bulk());
Flush_observer *observer = m_mtr->get_flush_observer();
rec_block_fix();
commit_btr_mtr();
DEBUG_SYNC_C("blob_write_middle");
log_free_check();
start_btr_mtr();
m_mtr->set_flush_observer(observer);
rec_block_unfix();
ut_ad(validate());
}
/** Check if there is enough space in log file. Commit and re-start the
mini-transaction. */
void BtrContext::check_redolog_normal() {
ut_ad(!is_bulk());
Flush_observer *observer = m_mtr->get_flush_observer();
store_position();
commit_btr_mtr();
DEBUG_SYNC_C("blob_write_middle");
log_free_check();
DEBUG_SYNC_C("blob_write_middle_after_check");
start_btr_mtr();
m_mtr->set_flush_observer(observer);
restore_position();
ut_ad(validate());
}
/** Print this blob directory into the given output stream.
@param[in] out the output stream.
@return the output stream. */
std::ostream &blob_dir_t::print(std::ostream &out) const {
out << "[blob_dir_t: ";
for (const blob_page_info_t &info : m_pages) {
out << info;
}
out << "]";
return (out);
}
/** Print this blob_page_into_t object into the given output stream.
@param[in] out the output stream.
@return the output stream. */
std::ostream &blob_page_info_t::print(std::ostream &out) const {
out << "[blob_page_info_t: m_page_no=" << m_page_no << ", m_bytes=" << m_bytes
<< ", m_zbytes=" << m_zbytes << "]";
return (out);
}
/** Do setup of the zlib stream.
@return code returned by zlib. */
int zReader::setup_zstream() {
const ulint local_prefix = m_rctx.m_local_len - BTR_EXTERN_FIELD_REF_SIZE;
m_stream.next_out = m_rctx.m_buf + local_prefix;
m_stream.avail_out = static_cast<uInt>(m_rctx.m_len - local_prefix);
m_stream.next_in = Z_NULL;
m_stream.avail_in = 0;
/* Zlib inflate needs 32 kilobytes for the default
window size, plus a few kilobytes for small objects. */
m_heap = mem_heap_create(40000, UT_LOCATION_HERE);
page_zip_set_alloc(&m_stream, m_heap);
int err = inflateInit(&m_stream);
return (err);
}
/** Fetch the BLOB.
@return DB_SUCCESS on success, DB_FAIL on error. */
dberr_t zReader::fetch() {
DBUG_TRACE;
dberr_t err = DB_SUCCESS;
ut_ad(m_rctx.is_valid_blob());
ut_ad(assert_empty_local_prefix());
ut_d(m_page_type_ex =
m_rctx.is_sdi() ? FIL_PAGE_SDI_ZBLOB : FIL_PAGE_TYPE_ZBLOB);
setup_zstream();
m_remaining = m_rctx.m_blobref.length();
while (m_rctx.m_page_no != FIL_NULL) {
page_no_t curr_page_no = m_rctx.m_page_no;
err = fetch_page();
if (err != DB_SUCCESS) {
break;
}
m_stream.next_in = m_bpage->zip.data + m_rctx.m_offset;
m_stream.avail_in =
static_cast<uInt>(m_rctx.m_page_size.physical() - m_rctx.m_offset);
int zlib_err = inflate(&m_stream, Z_NO_FLUSH);
switch (zlib_err) {
case Z_OK:
if (m_stream.avail_out == 0) {
goto end_of_blob;
}
break;
case Z_STREAM_END:
if (m_rctx.m_page_no == FIL_NULL) {
goto end_of_blob;
}
[[fallthrough]];
default:
err = DB_FAIL;
ib::error(ER_IB_MSG_630)
<< "inflate() of compressed BLOB page "
<< page_id_t(m_rctx.m_space_id, curr_page_no) << " returned "
<< zlib_err << " (" << m_stream.msg << ")";
ut_error;
[[fallthrough]];
case Z_BUF_ERROR:
goto end_of_blob;
}
buf_page_release_zip(m_bpage);
m_rctx.m_offset = FIL_PAGE_NEXT;
ut_d(if (!m_rctx.m_is_sdi) m_page_type_ex = FIL_PAGE_TYPE_ZBLOB2);
}
end_of_blob:
buf_page_release_zip(m_bpage);
inflateEnd(&m_stream);
mem_heap_free(m_heap);
UNIV_MEM_ASSERT_RW(m_rctx.m_buf, m_stream.total_out);
return err;
}
#ifdef UNIV_DEBUG
/** Assert that the local prefix is empty. For compressed row format,
there is no local prefix stored. This function doesn't return if the
local prefix is non-empty.
@return true if local prefix is empty*/
bool zReader::assert_empty_local_prefix() {
ut_ad(m_rctx.m_local_len == BTR_EXTERN_FIELD_REF_SIZE);
return (true);
}
#endif /* UNIV_DEBUG */
dberr_t zReader::fetch_page() {
dberr_t err(DB_SUCCESS);
m_bpage = buf_page_get_zip(page_id_t(m_rctx.m_space_id, m_rctx.m_page_no),
m_rctx.m_page_size);
ut_a(m_bpage != nullptr);
ut_ad(fil_page_get_type(m_bpage->zip.data) == m_page_type_ex);
m_rctx.m_page_no = mach_read_from_4(m_bpage->zip.data + FIL_PAGE_NEXT);
if (m_rctx.m_offset == FIL_PAGE_NEXT) {
/* When the BLOB begins at page header,
the compressed data payload does not
immediately follow the next page pointer. */
m_rctx.m_offset = FIL_PAGE_DATA;
} else {
m_rctx.m_offset += 4;
}
return (err);
}
/** This is used to take action when we enter and exit a scope. When we enter
the scope the constructor will set the "being modified" bit in the lob reference
objects that are either being inserted or updated. When we exit the scope the
destructor will clear the "being modified" bit in the lob reference objects. */
struct Being_modified {
/** Constructor. Set the "being modified" bit in LOB references.
@param[in] ctx the B-tree context for LOB operation.
@param[in] big_rec_vec the LOB vector
@param[in] pcur persistent cursor
@param[in] offsets the record offsets
@param[in] op the operation code
@param[in] mtr the mini-transaction context. */
Being_modified(BtrContext &ctx, const big_rec_t *big_rec_vec,
btr_pcur_t *pcur, ulint *offsets, opcode op, mtr_t *mtr)
: m_btr_ctx(ctx),
m_big_rec_vec(big_rec_vec),
m_pcur(pcur),
m_offsets(offsets),
m_op(op),
m_mtr(mtr) {
/* All pointers to externally stored columns in the record
must either be zero or they must be pointers to inherited
columns, owned by this record or an earlier record version. */
rec_t *rec = m_pcur->get_rec();
dict_index_t *index = m_pcur->index();
#ifdef UNIV_DEBUG
rec_offs_make_valid(rec, index, m_offsets);
#endif /* UNIV_DEBUG */
for (uint i = 0; i < m_big_rec_vec->n_fields; i++) {
ulint field_no = m_big_rec_vec->fields[i].field_no;
byte *field_ref = btr_rec_get_field_ref(index, rec, m_offsets, field_no);
ref_t blobref(field_ref);
ut_ad(!blobref.is_being_modified());
/* Before we release latches in a subsequent ctx.check_redolog() call,
mark the blobs as being modified. This is needed to ensure that READ
UNCOMMITTED transactions don't read an inconsistent BLOB. */
if (index->is_compressed()) {
blobref.set_being_modified(true, nullptr);
if (m_op == OPCODE_INSERT_UPDATE) {
/* Inserting by updating a del-marked record. */
blobref.set_page_no(FIL_NULL, nullptr);
}
if (!m_btr_ctx.is_bulk()) {
buf_block_t *rec_block = m_pcur->get_block();
page_zip_des_t *page_zip = buf_block_get_page_zip(rec_block);
page_zip_write_blob_ptr(page_zip, rec, index, m_offsets,
index->get_field_off_pos(field_no), m_mtr);
}
} else {
blobref.set_being_modified(true, m_mtr);
}
#if defined UNIV_DEBUG || defined UNIV_BLOB_LIGHT_DEBUG
/* Make a in-memory copy of the LOB ref. */
ref_mem_t ref_mem;
blobref.parse(ref_mem);
ut_a(blobref.is_owner());
/* Either this must be an update in place,
or the BLOB must be inherited, or the BLOB pointer
must be zero (will be written in this function). */
ut_a(m_op == OPCODE_UPDATE || m_op == OPCODE_INSERT_UPDATE ||
blobref.is_inherited() || blobref.is_null_relaxed());
ut_ad(blobref.is_being_modified());
#endif /* UNIV_DEBUG || UNIV_BLOB_LIGHT_DEBUG */
}
}
/** Destructor. Clear the "being modified" bit in LOB references. */
~Being_modified() {
rec_t *rec = m_pcur->get_rec();
dict_index_t *index = m_pcur->index();
#ifdef UNIV_DEBUG
rec_offs_make_valid(rec, index, m_offsets);
#endif /* UNIV_DEBUG */
for (uint i = 0; i < m_big_rec_vec->n_fields; i++) {
ulint field_no = m_big_rec_vec->fields[i].field_no;
byte *field_ref =
btr_rec_get_field_ref(m_btr_ctx.index(), rec, m_offsets, field_no);
ref_t blobref(field_ref);
if (index->is_compressed()) {
blobref.set_being_modified(false, nullptr);
if (!m_btr_ctx.is_bulk()) {
buf_block_t *rec_block = m_pcur->get_block();
page_zip_des_t *page_zip = buf_block_get_page_zip(rec_block);
page_zip_write_blob_ptr(page_zip, rec, index, m_offsets,
index->get_field_off_pos(field_no), m_mtr);
}
} else {
blobref.set_being_modified(false, m_mtr);
}
}
}
BtrContext &m_btr_ctx;
const big_rec_t *m_big_rec_vec;
btr_pcur_t *m_pcur;
ulint *m_offsets;
opcode m_op;
mtr_t *m_mtr;
};
/** Stores the fields in big_rec_vec to the tablespace and puts pointers to
them in rec. The extern flags in rec will have to be set beforehand. The
fields are stored on pages allocated from leaf node file segment of the index
tree.
TODO: If the allocation extends the tablespace, it will not be redo logged, in
any mini-transaction. Tablespace extension should be redo-logged, so that
recovery will not fail when the big_rec was written to the extended portion of
the file, in case the file was somehow truncated in the crash.
@param[in] trx the trx doing LOB store. If unavailable it
could be nullptr.
@param[in,out] pcur a persistent cursor. if btr_mtr is restarted,
then this can be repositioned.
@param[in] upd update vector
@param[in,out] offsets rec_get_offsets() on pcur. the "external in
offsets will correctly correspond storage"
flagsin offsets will correctly correspond to
rec when this function returns
@param[in] big_rec_vec vector containing fields to be stored
externally
@param[in,out] btr_mtr mtr containing the latches to the clustered
index. can be committed and restarted.
@param[in] op operation code
@return DB_SUCCESS or DB_OUT_OF_FILE_SPACE */
dberr_t btr_store_big_rec_extern_fields(trx_t *trx, btr_pcur_t *pcur,
const upd_t *upd, ulint *offsets,
const big_rec_t *big_rec_vec,
mtr_t *btr_mtr, opcode op) {
mtr_t mtr;
mtr_t mtr_bulk;
page_zip_des_t *page_zip;
dberr_t error = DB_SUCCESS;
dict_index_t *index = pcur->index();
dict_table_t *table = index->table;
buf_block_t *rec_block = pcur->get_block();
rec_t *rec = pcur->get_rec();
ut_ad(rec_offs_validate(rec, index, offsets));
ut_ad(rec_offs_any_extern(offsets));
ut_ad(btr_mtr);
ut_ad(mtr_memo_contains_flagged(btr_mtr, dict_index_get_lock(index),
MTR_MEMO_X_LOCK | MTR_MEMO_SX_LOCK) ||
index->table->is_intrinsic() || !index->is_committed());
ut_ad(
mtr_is_block_fix(btr_mtr, rec_block, MTR_MEMO_PAGE_X_FIX, index->table));
ut_ad(buf_block_get_frame(rec_block) == page_align(rec));
ut_a(index->is_clustered());
ut_a(dict_table_page_size(table).equals_to(rec_block->page.size));
/* Create a blob operation context. */
BtrContext btr_ctx(btr_mtr, pcur, index, rec, offsets, rec_block, op);
InsertContext ctx(btr_ctx, big_rec_vec);
Being_modified bm(btr_ctx, big_rec_vec, pcur, offsets, op, btr_mtr);
/* The pcur could be re-positioned. Commit and restart btr_mtr. */
ctx.check_redolog();
rec_block = pcur->get_block();
rec = pcur->get_rec();
page_zip = buf_block_get_page_zip(rec_block);
ut_a(fil_page_index_page_check(page_align(rec)) || op == OPCODE_INSERT_BULK);
if (page_zip != nullptr) {
DBUG_EXECUTE_IF("lob_insert_single_zstream",
{ goto insert_single_zstream; });
if (dict_index_is_sdi(index)) {
goto insert_single_zstream;
}
} else {
/* Uncompressed LOB */
DBUG_EXECUTE_IF("lob_insert_noindex", { goto insert_noindex; });
if (dict_index_is_sdi(index)) {
goto insert_noindex;
}
}
for (uint i = 0; i < big_rec_vec->n_fields; i++) {
ulint field_no = big_rec_vec->fields[i].field_no;
/* Cursor could have changed position. */
rec = pcur->get_rec();
rec_offs_make_valid(rec, index, offsets);
ut_ad(rec_offs_validate(rec, index, offsets));
byte *field_ref = btr_rec_get_field_ref(index, rec, offsets, field_no);
ref_t blobref(field_ref);
ut_ad(blobref.validate(btr_mtr));
bool can_do_partial_update = false;
if (op == lob::OPCODE_UPDATE && upd != nullptr &&
big_rec_vec->fields[i].ext_in_old) {
can_do_partial_update = blobref.is_lob_partially_updatable(index);
}
if (page_zip != nullptr) {
bool do_insert = true;
if (op == lob::OPCODE_UPDATE && upd != nullptr &&
blobref.is_big(rec_block->page.size) && can_do_partial_update) {
if (upd->is_partially_updated(field_no)) {
/* Do partial update. */
error = lob::z_update(ctx, trx, index, upd, field_no, blobref);
switch (error) {
case DB_SUCCESS:
do_insert = false;
break;
case DB_FAIL:
break;
default:
ut_error;
}
} else {
/* This is to inform the purge thread that
the older version LOB in this update operation
can be freed. */
blobref.mark_not_partially_updatable(trx, btr_mtr, index,
dict_table_page_size(table));
}
}
if (do_insert) {
const ulint lob_len = big_rec_vec->fields[i].len;
if (ref_t::use_single_z_stream(lob_len)) {
zInserter zblob_writer(&ctx);
error = zblob_writer.prepare();
if (error == DB_SUCCESS) {
zblob_writer.write_one_blob(i);
error = zblob_writer.finish();
}
} else {
error = lob::z_insert(&ctx, trx, blobref, &big_rec_vec->fields[i], i);
}
if (op == lob::OPCODE_UPDATE && upd != nullptr) {
/* Get the corresponding upd_field_t
object.*/
const upd_field_t *const uf =
upd->get_field_by_field_no(field_no, index);
if (uf != nullptr) {
/* Update the LOB reference
stored in upd_field_t */
const dfield_t *const new_val = &uf->new_val;
if (dfield_is_ext(new_val)) {
byte *field_ref = new_val->blobref();
blobref.copy(field_ref);
ref_t::set_being_modified(field_ref, false, nullptr);
}
}
}
}
} else {
/* Uncompressed LOB */
bool do_insert = true;
if (op == lob::OPCODE_UPDATE && upd != nullptr &&
blobref.is_big(rec_block->page.size) && can_do_partial_update) {
if (upd->is_partially_updated(field_no)) {
/* Do partial update. */
error = lob::update(ctx, trx, index, upd, field_no, blobref);
switch (error) {
case DB_SUCCESS:
do_insert = false;
break;
case DB_FAIL:
break;
case DB_OUT_OF_FILE_SPACE:
break;
default:
ut_error;
}
} else {
/* This is to inform the purge thread that
the older version LOB in this update operation
can be freed. */
blobref.mark_not_partially_updatable(trx, btr_mtr, index,
dict_table_page_size(table));
}
}
if (do_insert) {
error = lob::insert(&ctx, trx, blobref, &big_rec_vec->fields[i], i);
if (op == lob::OPCODE_UPDATE && upd != nullptr) {
/* Get the corresponding upd_field_t
object.*/
const upd_field_t *const uf =
upd->get_field_by_field_no(field_no, index);
if (uf != nullptr) {
/* Update the LOB reference
stored in upd_field_t */
const dfield_t *const new_val = &uf->new_val;
if (dfield_is_ext(new_val)) {
byte *field_ref = new_val->blobref();
blobref.copy(field_ref);
ref_t::set_being_modified(field_ref, false, nullptr);
}
}
}
}
}
if (error != DB_SUCCESS) {
break;
}
#ifdef UNIV_DEBUG
/* Ensure that the LOB references are valid now. */
rec = pcur->get_rec();
rec_offs_make_valid(rec, index, offsets);
field_ref = btr_rec_get_field_ref(index, rec, offsets, field_no);
ref_t lobref(field_ref);
ut_ad(!lobref.is_null());
#endif /* UNIV_DEBUG */
}
return (error);
{
insert_single_zstream:
/* Insert the LOB as a single zlib stream spanning multiple
LOB pages. This is the old way of storing LOBs. */
zInserter zblob_writer(&ctx);
error = zblob_writer.prepare();
if (error == DB_SUCCESS) {
zblob_writer.write();
error = zblob_writer.finish();
}
return (error);
}
{
insert_noindex:
/* Insert the uncompressed LOB without LOB index. */
Inserter blob_writer(&ctx);
error = blob_writer.write();
return (error);
}
}
byte *btr_rec_copy_externally_stored_field_func(
trx_t *trx, const dict_index_t *index, const rec_t *rec,
const ulint *offsets, const page_size_t &page_size, ulint no, ulint *len,
size_t *lob_version, IF_DEBUG(bool is_sdi, ) mem_heap_t *heap,
bool is_rebuilt) {
ulint local_len;
const byte *data;
const dict_index_t *check_instant_index = index;
if (is_rebuilt) {
/* nullptr if it is being called when table is being rebuilt because then
offsets will be for new records which won't have instant columns. */
check_instant_index = nullptr;
}
ut_a(rec_offs_nth_extern(check_instant_index, offsets, no));
/* An externally stored field can contain some initial
data from the field, and in the last 20 bytes it has the
space id, page number, and offset where the rest of the
field data is stored, and the data length in addition to
the data stored locally. We may need to store some data
locally to get the local record length above the 128 byte
limit so that field offsets are stored in two bytes, and
the extern bit is available in those two bytes. */
data = rec_get_nth_field(check_instant_index, rec, offsets, no, &local_len);
const byte *field_ref = data + local_len - BTR_EXTERN_FIELD_REF_SIZE;
lob::ref_t ref(const_cast<byte *>(field_ref));
ut_a(local_len >= BTR_EXTERN_FIELD_REF_SIZE);
/* Verify if the LOB reference is sane. */
ut_d(space_id_t space_id = ref.space_id());
ut_ad(space_id == 0 || space_id == index->space);
if (ref.is_null()) {
/* The externally stored field was not written yet.
This record should only be seen by
trx_rollback_or_clean_all_recovered() or any
TRX_ISO_READ_UNCOMMITTED transactions. */
return (nullptr);
}
return (btr_copy_externally_stored_field_func(trx, index, len, lob_version,
data, page_size, local_len,
IF_DEBUG(is_sdi, ) heap));
}
/** Returns the page number where the next BLOB part is stored.
@param[in] blob_header the BLOB header.
@return page number or FIL_NULL if no more pages */
static inline page_no_t btr_blob_get_next_page_no(const byte *blob_header) {
return (mach_read_from_4(blob_header + LOB_HDR_NEXT_PAGE_NO));
}
/** Check the FIL_PAGE_TYPE on an uncompressed BLOB page.
@param[in] space_id space identifier.
@param[in] page_no page number.
@param[in] page the page
@param[in] read true=read, false=purge */
static void btr_check_blob_fil_page_type(space_id_t space_id, page_no_t page_no,
const page_t *page, bool read) {
ulint type = fil_page_get_type(page);
ut_a(space_id == page_get_space_id(page));
ut_a(page_no == page_get_page_no(page));
switch (type) {
uint32_t flags;
case FIL_PAGE_TYPE_BLOB:
case FIL_PAGE_SDI_BLOB:
break;
default:
flags = fil_space_get_flags(space_id);
#ifndef UNIV_DEBUG /* Improve debug test coverage */
if (!DICT_TF_HAS_ATOMIC_BLOBS(flags)) {
/* Old versions of InnoDB did not initialize
FIL_PAGE_TYPE on BLOB pages. Do not print
anything about the type mismatch when reading
a BLOB page that may be from old versions. */
return;
}
#endif /* !UNIV_DEBUG */
ib::fatal(UT_LOCATION_HERE, ER_IB_MSG_631)
<< "FIL_PAGE_TYPE=" << type << " on BLOB "
<< (read ? "read" : "purge") << " space " << space_id << " page "
<< page_no << " flags " << flags;
}
}
/** Returns the length of a BLOB part stored on the header page.
@param[in] blob_header the BLOB header.
@return part length */
static inline ulint btr_blob_get_part_len(const byte *blob_header) {
return (mach_read_from_4(blob_header + LOB_HDR_PART_LEN));
}
/** Fetch one BLOB page. */
void Reader::fetch_page() {
mtr_t mtr;
/* Bytes of LOB data available in the current LOB page. */
ulint part_len;
/* Bytes of LOB data obtained from the current LOB page. */
ulint copy_len;
ut_ad(m_rctx.m_page_no != FIL_NULL);
ut_ad(m_rctx.m_page_no > 0);
mtr_start(&mtr);
m_cur_block =
buf_page_get(page_id_t(m_rctx.m_space_id, m_rctx.m_page_no),
m_rctx.m_page_size, RW_S_LATCH, UT_LOCATION_HERE, &mtr);
buf_block_dbg_add_level(m_cur_block, SYNC_EXTERN_STORAGE);
page_t *page = buf_block_get_frame(m_cur_block);
btr_check_blob_fil_page_type(m_rctx.m_space_id, m_rctx.m_page_no, page, true);
byte *blob_header = page + m_rctx.m_offset;
part_len = btr_blob_get_part_len(blob_header);
copy_len = std::min(part_len, m_rctx.m_len - m_copied_len);
memcpy(m_rctx.m_buf + m_copied_len, blob_header + LOB_HDR_SIZE, copy_len);
m_copied_len += copy_len;
m_rctx.m_page_no = btr_blob_get_next_page_no(blob_header);
mtr_commit(&mtr);
m_rctx.m_offset = FIL_PAGE_DATA;
}
/** Fetch the complete or prefix of the uncompressed LOB data.
@return bytes of LOB data fetched. */
ulint Reader::fetch() {
if (m_rctx.m_blobref.is_null()) {
ut_ad(m_copied_len == 0);
return (m_copied_len);
}
while (m_copied_len < m_rctx.m_len) {
if (m_rctx.m_page_no == FIL_NULL) {
/* End of LOB has been reached. */
break;
}
fetch_page();
}
/* Assure that we have fetched the requested amount or the LOB
has ended. */
ut_ad(m_copied_len == m_rctx.m_len || m_rctx.m_page_no == FIL_NULL);
return (m_copied_len);
}
/** Copies the prefix of an externally stored field of a record.
The clustered index record must be protected by a lock or a page latch.
@param[in] trx the current transaction object if available
or nullptr.
@param[in] index the clust index in which lob is read.
@param[out] buf the field, or a prefix of it
@param[in] len length of buf, in bytes
@param[in] page_size BLOB page size
@param[in] data 'internally' stored part of the field
containing also the reference to the external
part; must be protected by a lock or a page
latch.
@param[in] is_sdi true for SDI indexes
@param[in] local_len length of data, in bytes
@return the length of the copied field, or 0 if the column was being
or has been deleted */
ulint btr_copy_externally_stored_field_prefix_func(
trx_t *trx, const dict_index_t *index, byte *buf, ulint len,
const page_size_t &page_size, const byte *data,
IF_DEBUG(bool is_sdi, ) ulint local_len) {
ut_a(local_len >= BTR_EXTERN_FIELD_REF_SIZE);
if (page_size.is_compressed()) {
ut_a(local_len == BTR_EXTERN_FIELD_REF_SIZE);
ReadContext rctx(page_size, data, local_len, buf, len IF_DEBUG(, is_sdi));
rctx.m_index = const_cast<dict_index_t *>(index);
rctx.m_trx = trx;
/* Obtain length of LOB available in clustered index.*/
ulint avail_lob = rctx.m_blobref.length();
if (avail_lob == 0) {
/* No LOB data available. */
return (0);
}
/* Read the LOB data. */
ulint fetch_len = lob::z_read(&rctx, rctx.m_blobref, 0, len, buf);
/* Either fetch the requested length or fetch the complete
LOB. If complete LOB is fetched, then it means that requested
length is bigger than the available length. */
ut_a(fetch_len == 0 || fetch_len == len ||
(fetch_len == avail_lob && avail_lob < len));
return (fetch_len);
}
local_len -= BTR_EXTERN_FIELD_REF_SIZE;
if (UNIV_UNLIKELY(local_len >= len)) {
memcpy(buf, data, len);
return (len);
}
memcpy(buf, data, local_len);
data += local_len;
ut_a(memcmp(data, field_ref_zero, BTR_EXTERN_FIELD_REF_SIZE));
if (!mach_read_from_4(data + BTR_EXTERN_LEN + 4)) {
/* The externally stored part of the column has been
(partially) deleted. Signal the half-deleted BLOB
to the caller. */
return (0);
}
ReadContext rctx(page_size, data, local_len + BTR_EXTERN_FIELD_REF_SIZE,
buf + local_len, len IF_DEBUG(, false));
rctx.m_index = (dict_index_t *)index;
rctx.m_trx = trx;
ulint fetch_len = lob::read(&rctx, rctx.m_blobref, 0, len, buf + local_len);
return (local_len + fetch_len);
}
byte *btr_copy_externally_stored_field_func(
trx_t *trx, const dict_index_t *index, ulint *len, size_t *lob_version,
const byte *data, const page_size_t &page_size, ulint local_len,
IF_DEBUG(bool is_sdi, ) mem_heap_t *heap) {
uint32_t extern_len;
byte *buf;
ut_a(index->is_clustered());
ut_a(local_len >= BTR_EXTERN_FIELD_REF_SIZE);
local_len -= BTR_EXTERN_FIELD_REF_SIZE;
/* Currently a BLOB cannot be bigger than 4 GB; we
leave the 4 upper bytes in the length field unused */
const byte *field_ref = data + local_len;
extern_len = mach_read_from_4(data + local_len + BTR_EXTERN_LEN + 4);
buf = (byte *)mem_heap_alloc(heap, local_len + extern_len);
ReadContext rctx(page_size, data, local_len + BTR_EXTERN_FIELD_REF_SIZE,
buf + local_len, extern_len IF_DEBUG(, is_sdi));
rctx.m_index = (dict_index_t *)index;
if (ref_t::is_being_modified(field_ref)) {
#ifdef UNIV_DEBUG
/* Check the sanity of the LOB reference. */
if (ref_t::is_null_relaxed(field_ref) ||
ref_t::space_id(field_ref) == index->space) {
/* Valid scenario. Do nothing. */
} else {
bool lob_ref_is_corrupt = false;
ut_ad(lob_ref_is_corrupt);
}
#endif /* UNIV_DEBUG */
/* This is applicable only for READ UNCOMMITTED transactions because they
don't take transaction locks. */
ut_ad(trx == nullptr || trx->is_read_uncommitted());
*len = 0;
return (buf);
}
if (extern_len == 0) {
/* The lob has already been purged. */
ut_ad(ref_t::page_no(field_ref) == FIL_NULL);
*len = 0;
return (buf);
}
if (page_size.is_compressed()) {
ut_ad(local_len == 0);
*len = 0;
if (extern_len > 0) {
*len = lob::z_read(&rctx, rctx.m_blobref, 0, extern_len, buf + local_len);
}
return (buf);
} else {
if (local_len > 0) {
memcpy(buf, data, local_len);
}
ulint fetch_len =
lob::read(&rctx, rctx.m_blobref, 0, extern_len, buf + local_len);
*len = local_len + fetch_len;
if (lob_version != nullptr) {
*lob_version = rctx.m_lob_version;
}
return (buf);
}
}
void BtrContext::free_updated_extern_fields(trx_id_t trx_id, undo_no_t undo_no,
const upd_t *update, bool rollback,
big_rec_t *big_rec_vec) {
ulint n_fields;
ulint i;
ut_ad(rollback);
#ifdef UNIV_DEBUG
ut_ad(big_rec_vec == nullptr || materialize_instant_default(m_index, m_rec));
#endif
ut_ad(rec_offs_validate());
ut_ad(mtr_is_page_fix(m_mtr, m_rec, MTR_MEMO_PAGE_X_FIX, m_index->table));
/* Assert that the cursor position and the record are matching. */
ut_ad(!need_recalc());
/* Free possible externally stored fields in the record */
n_fields = upd_get_n_fields(update);
for (i = 0; i < n_fields; i++) {
const upd_field_t *ufield = upd_get_nth_field(update, i);
/* No need to free the column if it is a virtual column as it does not
consume any storage. */
if (!ufield->is_virtual() &&
rec_offs_nth_extern(m_index, m_offsets, ufield->field_no)) {
/* Skip freeing fields which are added as part of updating a record in
table having instant index */
if (big_rec_vec != nullptr) {
bool found = false;
for (size_t i = 0; i < big_rec_vec->n_fields; i++) {
if (ufield->field_no == big_rec_vec->fields[i].field_no) {
found = true;
break;
}
}
if (found) {
continue;
}
}
ulint len;
byte *data =
rec_get_nth_field(m_index, m_rec, m_offsets, ufield->field_no, &len);
ut_a(len >= BTR_EXTERN_FIELD_REF_SIZE);
byte *field_ref = data + len - BTR_EXTERN_FIELD_REF_SIZE;
DeleteContext ctx(*this, field_ref, ufield->field_no, rollback);
/* Last argument is nullptr because this is rollback. */
lob::purge(&ctx, m_index, trx_id, undo_no, 0, ufield, nullptr);
if (need_recalc()) {
recalc();
}
}
}
}
/** Deallocate a buffer block that was reserved for a BLOB part.
@param[in] index Index
@param[in] block Buffer block
@param[in] all true=remove also the compressed page
if there is one
@param[in] mtr Mini-transaction to commit */
void blob_free(dict_index_t *index, buf_block_t *block, bool all, mtr_t *mtr) {
buf_pool_t *buf_pool = buf_pool_from_block(block);
page_id_t page_id(block->page.id.space(), block->page.id.page_no());
bool freed = false;
ut_ad(mtr_is_block_fix(mtr, block, MTR_MEMO_PAGE_X_FIX, index->table));
mtr_commit(mtr);
mutex_enter(&buf_pool->LRU_list_mutex);
buf_page_mutex_enter(block);
/* Only free the block if it is still allocated to
the same file page. */
if (buf_block_get_state(block) == BUF_BLOCK_FILE_PAGE &&
page_id == block->page.id) {
freed = buf_LRU_free_page(&block->page, all);
if (!freed && all && block->page.zip.data &&
buf_block_get_state(block) == BUF_BLOCK_FILE_PAGE &&
page_id == block->page.id) {
/* Attempt to deallocate the uncompressed page
if the whole block cannot be deallocted. */
freed = buf_LRU_free_page(&block->page, false);
}
}
if (!freed) {
mutex_exit(&buf_pool->LRU_list_mutex);
buf_page_mutex_exit(block);
}
}
/** Gets the externally stored size of a record, in units of a database page.
@param[in] index index
@param[in] rec record
@param[in] offsets array returned by rec_get_offsets()
@return externally stored part, in units of a database page */
ulint btr_rec_get_externally_stored_len(const dict_index_t *index,
const rec_t *rec,
const ulint *offsets) {
ulint n_fields;
ulint total_extern_len = 0;
ulint i;
ut_ad(!rec_offs_comp(offsets) || !rec_get_node_ptr_flag(rec));
if (!rec_offs_any_extern(offsets)) {
return (0);
}
n_fields = rec_offs_n_fields(offsets);
for (i = 0; i < n_fields; i++) {
if (rec_offs_nth_extern(index, offsets, i)) {
ulint extern_len = mach_read_from_4(
btr_rec_get_field_ref(index, rec, offsets, i) + BTR_EXTERN_LEN + 4);
total_extern_len += ut_calc_align(extern_len, UNIV_PAGE_SIZE);
}
}
return (total_extern_len / UNIV_PAGE_SIZE);
}
/** Frees the externally stored fields for a record.
@param[in] trx_id transaction identifier whose LOB is
being freed.
@param[in] undo_no undo number within a transaction whose
LOB is being freed.
@param[in] rollback performing rollback?
@param[in] rec_type undo record type.
@param[in] node purge node or nullptr */
void BtrContext::free_externally_stored_fields(trx_id_t trx_id,
undo_no_t undo_no, bool rollback,
ulint rec_type,
purge_node_t *node) {
ut_ad(rec_offs_validate());
ut_ad(mtr_is_page_fix(m_mtr, m_rec, MTR_MEMO_PAGE_X_FIX, m_index->table));
/* Assert that the cursor position and the record are matching. */
ut_ad(!need_recalc());
/* Free possible externally stored fields in the record */
ut_ad(dict_table_is_comp(m_index->table) == rec_offs_comp(m_offsets));
ulint n_fields = rec_offs_n_fields(m_offsets);
DeleteContext ctx(*this, rollback);
for (ulint i = 0; i < n_fields; i++) {
if (rec_offs_nth_extern(m_index, m_offsets, i)) {
byte *field_ref = btr_rec_get_field_ref(m_index, m_rec, m_offsets, i);
ctx.set_blob(field_ref, m_index->get_field_off_pos(i));
upd_field_t *uf = nullptr;
lob::purge(&ctx, m_index, trx_id, undo_no, rec_type, uf, node);
if (need_recalc()) {
recalc();
}
}
}
ctx.free_lob_blocks();
}
/** Load the first page of LOB and read its page type.
@param[in] index the index object.
@param[in] page_size the page size of LOB.
@param[out] is_partially_updatable is the LOB partially updatable.
@return the page type of first page of LOB.*/
ulint ref_t::get_lob_page_info(const dict_index_t *index,
const page_size_t &page_size,
bool &is_partially_updatable) const {
mtr_t mtr;
buf_block_t *block;
ref_mem_t ref_mem;
parse(ref_mem);
mtr_start(&mtr);
block = buf_page_get(page_id_t(ref_mem.m_space_id, ref_mem.m_page_no),
page_size, RW_S_LATCH, UT_LOCATION_HERE, &mtr);
page_type_t page_type = block->get_page_type();
switch (page_type) {
case FIL_PAGE_TYPE_LOB_FIRST: {
first_page_t first_page(block, &mtr, (dict_index_t *)index);
is_partially_updatable = first_page.can_be_partially_updated();
break;
}
case FIL_PAGE_TYPE_ZLOB_FIRST: {
z_first_page_t z_first_page(block, &mtr, (dict_index_t *)index);
is_partially_updatable = z_first_page.can_be_partially_updated();
break;
}
default:
is_partially_updatable = false;
}
mtr_commit(&mtr);
return (page_type);
}
/** Load the first page of the LOB and mark it as not partially
updatable anymore.
@param[in] trx Current transaction
@param[in] mtr Mini-transaction context.
@param[in] index Index dictionary object.
@param[in] page_size Page size information. */
void ref_t::mark_not_partially_updatable(trx_t *trx, mtr_t *mtr,
dict_index_t *index,
const page_size_t &page_size) {
buf_block_t *block;
ref_mem_t ref_mem;
parse(ref_mem);
/* If LOB has already been purged, ignore it. */
if (ref_mem.is_purged()) {
return;
}
block = buf_page_get(page_id_t(ref_mem.m_space_id, ref_mem.m_page_no),
page_size, RW_X_LATCH, UT_LOCATION_HERE, mtr);
page_type_t page_type = block->get_page_type();
switch (page_type) {
case FIL_PAGE_TYPE_LOB_FIRST: {
first_page_t first_page(block, mtr, (dict_index_t *)index);
first_page.mark_cannot_be_partially_updated(trx);
break;
}
case FIL_PAGE_TYPE_ZLOB_FIRST: {
z_first_page_t z_first_page(block, mtr, (dict_index_t *)index);
z_first_page.mark_cannot_be_partially_updated(trx);
break;
}
default:
/* do nothing */
break;
}
}
/** Check if the LOB can be partially updated. This is done by loading
the first page of LOB and looking at the flags.
@param[in] index the index to which LOB belongs.
@return true if LOB is partially updatable, false otherwise.*/
bool ref_t::is_lob_partially_updatable(const dict_index_t *index) const {
if (is_null_relaxed()) {
return (false);
}
const page_size_t page_size = dict_table_page_size(index->table);
if (page_size.is_compressed() && use_single_z_stream()) {
return (false);
}
bool can_do_partial_update = false;
ulint page_type = get_lob_page_info(index, page_size, can_do_partial_update);
bool page_type_ok = (page_type == FIL_PAGE_TYPE_LOB_FIRST ||
page_type == FIL_PAGE_TYPE_ZLOB_FIRST);
return (page_type_ok && can_do_partial_update);
}
std::ostream &ref_t::print(std::ostream &out) const {
out << "[ref_t: m_ref=" << (void *)m_ref << ", space_id=" << space_id()
<< ", page_no=" << page_no() << ", offset=" << offset()
<< ", length=" << length()
<< ", is_being_modified=" << is_being_modified() << "]";
return (out);
}
#ifdef UNIV_DEBUG
bool ref_t::check_space_id(dict_index_t *index) const {
space_id_t idx_space_id = index->space;
space_id_t ref_space_id = space_id();
bool lob_ref_valid = (ref_space_id == 0 || idx_space_id == ref_space_id);
return (lob_ref_valid);
}
#endif /* UNIV_DEBUG */
/** Acquire an x-latch on the index page containing the clustered
index record, in the given mini-transaction context.
@param[in] mtr Mini-transaction context. */
void DeleteContext::x_latch_rec_page(mtr_t *mtr) {
bool found;
page_t *rec_page = m_blobref.page_align();
page_no_t rec_page_no = page_get_page_no(rec_page);
space_id_t rec_space_id = page_get_space_id(rec_page);
const page_size_t &rec_page_size =
fil_space_get_page_size(rec_space_id, &found);
ut_ad(found);
#ifdef UNIV_DEBUG
buf_block_t *block =
#endif /* UNIV_DEBUG */
buf_page_get(page_id_t(rec_space_id, rec_page_no), rec_page_size,
RW_X_LATCH, UT_LOCATION_HERE, mtr);
ut_ad(block != nullptr);
}
#ifdef UNIV_DEBUG
bool rec_check_lobref_space_id(dict_index_t *index, const rec_t *rec,
const ulint *offsets) {
/* Make it more robust. If rec pointer is null, don't do anything. */
if (rec == nullptr) {
return (true);
}
ut_ad(index->is_clustered());
ut_ad(rec_offs_validate(rec, nullptr, offsets));
const ulint n = rec_offs_n_fields(offsets);
for (ulint i = 0; i < n; i++) {
ulint len;
if (rec_offs_nth_default(index, offsets, i)) {
continue;
}
const byte *data = rec_get_nth_field(index, rec, offsets, i, &len);
if (len == UNIV_SQL_NULL) {
continue;
}
if (rec_offs_nth_extern(index, offsets, i)) {
ulint local_len = len - BTR_EXTERN_FIELD_REF_SIZE;
ut_ad(len >= BTR_EXTERN_FIELD_REF_SIZE);
const byte *field_ref = data + local_len;
if (!ref_t{const_cast<byte *>(field_ref)}.check_space_id(index)) {
return (false);
}
}
}
return (true);
}
#endif /* UNIV_DEBUG */
dberr_t mark_not_partially_updatable(trx_t *trx, dict_index_t *index,
const upd_t *update,
const mtr_t *btr_mtr) {
if (!index->is_clustered()) {
/* Only clustered index can have LOBs. */
return (DB_SUCCESS);
}
const ulint n_fields = upd_get_n_fields(update);
for (ulint i = 0; i < n_fields; i++) {
const upd_field_t *ufield = upd_get_nth_field(update, i);
if (ufield->is_virtual()) {
continue;
}
if (update->is_partially_updated(ufield->field_no)) {
continue;
}
const dfield_t *new_field = &ufield->new_val;
if (ufield->ext_in_old && !dfield_is_ext(new_field)) {
const dfield_t *old_field = &ufield->old_val;
byte *field_ref = old_field->blobref();
ref_t ref(field_ref);
if (!ref.is_null_relaxed()) {
mtr_t local_mtr;
ut_ad(ref.space_id() == index->space_id());
mtr_start(&local_mtr);
local_mtr.set_log_mode(btr_mtr->get_log_mode());
ref.mark_not_partially_updatable(trx, &local_mtr, index,
index->get_page_size());
mtr_commit(&local_mtr);
}
}
}
return (DB_SUCCESS);
}
} // namespace lob
|