Skip to content

Commit ad603bd

Browse files
committed
Update Chapter8.md
1 parent 0c0fe0d commit ad603bd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Chapter8.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ rec_init_offsets_comp_ordinary(
893893
const dict_col_t* col
894894
= dict_field_get_col(field);
895895
ulint len;
896-
896+
...
897897
```
898898

899899
The ***rec_init_offsets_comp_ordinary*** function in MySQL 8.0.40 is as follows:
@@ -965,11 +965,11 @@ inline void rec_init_offsets_comp_ordinary(const rec_t *rec, bool temp,
965965
[[fallthrough]];
966966
case INSERTED_AFTER_UPGRADE_BEFORE_INSTANT_ADD_NEW_IMPLEMENTATION
967967
case INSERTED_AFTER_INSTANT_ADD_NEW_IMPLEMENTATION: {
968-
968+
...
969969
} break;
970970
case INSERTED_BEFORE_INSTANT_ADD_OLD_IMPLEMENTATION:
971971
case INSERTED_AFTER_INSTANT_ADD_OLD_IMPLEMENTATION: {
972-
972+
...
973973
} break;
974974

975975
default:
@@ -1027,7 +1027,7 @@ Next, let's look at a similar issue. The ***row_sel_store_mysql_field function**
10271027
const ulint *offsets, ulint field_no, const mysql_row_templ_t *templ,
10281028
ulint sec_field_no, lob::undo_vers_t *lob_undo, mem_heap_t *&blob_heap) {
10291029
DBUG_TRACE;
1030-
1030+
...
10311031
} else {
10321032
/* Field is stored in the row. */
10331033

@@ -1068,7 +1068,7 @@ Next, let's look at a similar issue. The ***row_sel_store_mysql_field function**
10681068
row_sel_field_store_in_mysql_format(mysql_rec + templ->mysql_col_offset,
10691069
templ, rec_index, field_no, data, len,
10701070
sec_field_no);
1071-
1071+
...
10721072
```
10731073
10741074
The ***row_sel_field_store_in_mysql_format*** function ultimately calls ***row_sel_field_store_in_mysql_format_func***.

0 commit comments

Comments
 (0)