33
16
#include "mem0mem.h"
34
17
#include "dict0types.h"
36
/** Storage for overflow data in a big record, that is, a clustered
37
index record which needs external storage of data fields */
38
19
typedef struct big_rec_struct big_rec_t;
41
/*********************************************************************//**
42
Gets pointer to the type struct of SQL data field.
43
@return pointer to the type struct */
22
/*************************************************************************
23
Gets pointer to the type struct of SQL data field. */
48
const dfield_t* field); /*!< in: SQL data field */
49
/*********************************************************************//**
50
Gets pointer to the data in a field.
51
@return pointer to data */
28
/* out: pointer to the type struct */
29
const dfield_t* field); /* in: SQL data field */
30
/*************************************************************************
31
Gets pointer to the data in a field. */
56
const dfield_t* field); /*!< in: field */
36
/* out: pointer to data */
37
const dfield_t* field); /* in: field */
57
38
#else /* UNIV_DEBUG */
58
39
# define dfield_get_type(field) (&(field)->type)
59
40
# define dfield_get_data(field) ((field)->data)
60
41
#endif /* UNIV_DEBUG */
61
/*********************************************************************//**
42
/*************************************************************************
62
43
Sets the type struct of SQL data field. */
67
dfield_t* field, /*!< in: SQL data field */
68
dtype_t* type); /*!< in: pointer to data type struct */
69
/*********************************************************************//**
70
Gets length of field data.
71
@return length of data; UNIV_SQL_NULL if SQL null data */
48
dfield_t* field, /* in: SQL data field */
49
dtype_t* type); /* in: pointer to data type struct */
50
/*************************************************************************
51
Gets length of field data. */
76
const dfield_t* field); /*!< in: field */
77
/*********************************************************************//**
56
/* out: length of data; UNIV_SQL_NULL if
58
const dfield_t* field); /* in: field */
59
/*************************************************************************
78
60
Sets length in a field. */
83
dfield_t* field, /*!< in: field */
84
ulint len); /*!< in: length or UNIV_SQL_NULL */
85
/*********************************************************************//**
86
Determines if a field is SQL NULL
87
@return nonzero if SQL null data */
65
dfield_t* field, /* in: field */
66
ulint len); /* in: length or UNIV_SQL_NULL */
67
/*************************************************************************
68
Determines if a field is SQL NULL */
92
const dfield_t* field); /*!< in: field */
93
/*********************************************************************//**
94
Determines if a field is externally stored
95
@return nonzero if externally stored */
73
/* out: nonzero if SQL null data */
74
const dfield_t* field); /* in: field */
75
/*************************************************************************
76
Determines if a field is externally stored */
100
const dfield_t* field); /*!< in: field */
101
/*********************************************************************//**
81
/* out: nonzero if externally stored */
82
const dfield_t* field); /* in: field */
83
/*************************************************************************
102
84
Sets the "external storage" flag */
107
dfield_t* field); /*!< in/out: field */
108
/*********************************************************************//**
89
dfield_t* field); /* in/out: field */
90
/*************************************************************************
109
91
Sets pointer to the data and length in a field. */
114
dfield_t* field, /*!< in: field */
115
const void* data, /*!< in: data */
116
ulint len); /*!< in: length or UNIV_SQL_NULL */
117
/*********************************************************************//**
96
dfield_t* field, /* in: field */
97
const void* data, /* in: data */
98
ulint len); /* in: length or UNIV_SQL_NULL */
99
/*************************************************************************
118
100
Sets a data field to SQL NULL. */
123
dfield_t* field); /*!< in/out: field */
124
/**********************************************************************//**
105
dfield_t* field); /* in/out: field */
106
/**************************************************************************
125
107
Writes an SQL null field full of zeros. */
128
110
data_write_sql_null(
129
111
/*================*/
130
byte* data, /*!< in: pointer to a buffer of size len */
131
ulint len); /*!< in: SQL null size in bytes */
132
/*********************************************************************//**
112
byte* data, /* in: pointer to a buffer of size len */
113
ulint len); /* in: SQL null size in bytes */
114
/*************************************************************************
133
115
Copies the data and len fields. */
136
118
dfield_copy_data(
137
119
/*=============*/
138
dfield_t* field1, /*!< out: field to copy to */
139
const dfield_t* field2);/*!< in: field to copy from */
140
/*********************************************************************//**
120
dfield_t* field1, /* out: field to copy to */
121
const dfield_t* field2);/* in: field to copy from */
122
/*************************************************************************
141
123
Copies a data field to another. */
146
dfield_t* field1, /*!< out: field to copy to */
147
const dfield_t* field2);/*!< in: field to copy from */
148
/*********************************************************************//**
128
dfield_t* field1, /* out: field to copy to */
129
const dfield_t* field2);/* in: field to copy from */
130
/*************************************************************************
149
131
Copies the data pointed to by a data field. */
154
dfield_t* field, /*!< in/out: data field */
155
mem_heap_t* heap); /*!< in: memory heap where allocated */
156
/*********************************************************************//**
157
Tests if data length and content is equal for two dfields.
158
@return TRUE if equal */
136
dfield_t* field, /* in/out: data field */
137
mem_heap_t* heap); /* in: memory heap where allocated */
138
/*************************************************************************
139
Tests if data length and content is equal for two dfields. */
161
142
dfield_datas_are_binary_equal(
162
143
/*==========================*/
163
const dfield_t* field1, /*!< in: field */
164
const dfield_t* field2);/*!< in: field */
165
/*********************************************************************//**
166
Tests if dfield data length and content is equal to the given.
167
@return TRUE if equal */
144
/* out: TRUE if equal */
145
const dfield_t* field1, /* in: field */
146
const dfield_t* field2);/* in: field */
147
/*************************************************************************
148
Tests if dfield data length and content is equal to the given. */
170
151
dfield_data_is_binary_equal(
171
152
/*========================*/
172
const dfield_t* field, /*!< in: field */
173
ulint len, /*!< in: data length or UNIV_SQL_NULL */
174
const byte* data); /*!< in: data */
175
/*********************************************************************//**
176
Gets number of fields in a data tuple.
177
@return number of fields */
153
/* out: TRUE if equal */
154
const dfield_t* field, /* in: field */
155
ulint len, /* in: data length or UNIV_SQL_NULL */
156
const byte* data); /* in: data */
157
/*************************************************************************
158
Gets number of fields in a data tuple. */
180
161
dtuple_get_n_fields(
181
162
/*================*/
182
const dtuple_t* tuple); /*!< in: tuple */
163
/* out: number of fields */
164
const dtuple_t* tuple); /* in: tuple */
183
165
#ifdef UNIV_DEBUG
184
/*********************************************************************//**
185
Gets nth field of a tuple.
166
/*************************************************************************
167
Gets nth field of a tuple. */
189
170
dtuple_get_nth_field(
190
171
/*=================*/
191
const dtuple_t* tuple, /*!< in: tuple */
192
ulint n); /*!< in: index of field */
173
const dtuple_t* tuple, /* in: tuple */
174
ulint n); /* in: index of field */
193
175
#else /* UNIV_DEBUG */
194
176
# define dtuple_get_nth_field(tuple, n) ((tuple)->fields + (n))
195
177
#endif /* UNIV_DEBUG */
196
/*********************************************************************//**
197
Gets info bits in a data tuple.
178
/*************************************************************************
179
Gets info bits in a data tuple. */
201
182
dtuple_get_info_bits(
202
183
/*=================*/
203
const dtuple_t* tuple); /*!< in: tuple */
204
/*********************************************************************//**
185
const dtuple_t* tuple); /* in: tuple */
186
/*************************************************************************
205
187
Sets info bits in a data tuple. */
208
190
dtuple_set_info_bits(
209
191
/*=================*/
210
dtuple_t* tuple, /*!< in: tuple */
211
ulint info_bits); /*!< in: info bits */
212
/*********************************************************************//**
213
Gets number of fields used in record comparisons.
214
@return number of fields used in comparisons in rem0cmp.* */
192
dtuple_t* tuple, /* in: tuple */
193
ulint info_bits); /* in: info bits */
194
/*************************************************************************
195
Gets number of fields used in record comparisons. */
217
198
dtuple_get_n_fields_cmp(
218
199
/*====================*/
219
const dtuple_t* tuple); /*!< in: tuple */
220
/*********************************************************************//**
200
/* out: number of fields used in comparisons
202
const dtuple_t* tuple); /* in: tuple */
203
/*************************************************************************
221
204
Gets number of fields used in record comparisons. */
224
207
dtuple_set_n_fields_cmp(
225
208
/*====================*/
226
dtuple_t* tuple, /*!< in: tuple */
227
ulint n_fields_cmp); /*!< in: number of fields used in
209
dtuple_t* tuple, /* in: tuple */
210
ulint n_fields_cmp); /* in: number of fields used in
228
211
comparisons in rem0cmp.* */
229
/**********************************************************//**
212
/**************************************************************
230
213
Creates a data tuple to a memory heap. The default value for number
231
of fields used in record comparisons for this tuple is n_fields.
232
@return own: created tuple */
214
of fields used in record comparisons for this tuple is n_fields. */
237
mem_heap_t* heap, /*!< in: memory heap where the tuple
219
/* out, own: created tuple */
220
mem_heap_t* heap, /* in: memory heap where the tuple
239
ulint n_fields); /*!< in: number of fields */
222
ulint n_fields); /* in: number of fields */
241
/**********************************************************//**
224
/**************************************************************
242
225
Wrap data fields in a tuple. The default value for number
243
of fields used in record comparisons for this tuple is n_fields.
244
@return data tuple */
226
of fields used in record comparisons for this tuple is n_fields. */
247
229
dtuple_from_fields(
248
230
/*===============*/
249
dtuple_t* tuple, /*!< in: storage for data tuple */
250
const dfield_t* fields, /*!< in: fields */
251
ulint n_fields); /*!< in: number of fields */
231
/* out: data tuple */
232
dtuple_t* tuple, /* in: storage for data tuple */
233
const dfield_t* fields, /* in: fields */
234
ulint n_fields); /* in: number of fields */
253
/*********************************************************************//**
236
/*************************************************************************
254
237
Sets number of fields used in a tuple. Normally this is set in
255
238
dtuple_create, but if you want later to set it smaller, you can use this. */
258
241
dtuple_set_n_fields(
259
242
/*================*/
260
dtuple_t* tuple, /*!< in: tuple */
261
ulint n_fields); /*!< in: number of fields */
262
/*********************************************************************//**
243
dtuple_t* tuple, /* in: tuple */
244
ulint n_fields); /* in: number of fields */
245
/*************************************************************************
263
246
Copies a data tuple to another. This is a shallow copy; if a deep copy
264
is desired, dfield_dup() will have to be invoked on each field.
265
@return own: copy of tuple */
247
is desired, dfield_dup() will have to be invoked on each field. */
270
const dtuple_t* tuple, /*!< in: tuple to copy from */
271
mem_heap_t* heap); /*!< in: memory heap
252
/* out, own: copy of tuple */
253
const dtuple_t* tuple, /* in: tuple to copy from */
254
mem_heap_t* heap); /* in: memory heap
272
255
where the tuple is created */
273
/**********************************************************//**
256
/**************************************************************
274
257
The following function returns the sum of data lengths of a tuple. The space
275
occupied by the field structs or the tuple struct is not counted.
276
@return sum of data lens */
258
occupied by the field structs or the tuple struct is not counted. */
279
261
dtuple_get_data_size(
280
262
/*=================*/
281
const dtuple_t* tuple, /*!< in: typed data tuple */
282
ulint comp); /*!< in: nonzero=ROW_FORMAT=COMPACT */
283
/*********************************************************************//**
284
Computes the number of externally stored fields in a data tuple.
285
@return number of fields */
263
/* out: sum of data lens */
264
const dtuple_t* tuple); /* in: typed data tuple */
265
/*************************************************************************
266
Computes the number of externally stored fields in a data tuple. */
288
269
dtuple_get_n_ext(
289
270
/*=============*/
290
const dtuple_t* tuple); /*!< in: tuple */
291
/************************************************************//**
292
Compare two data tuples, respecting the collation of character fields.
293
@return 1, 0 , -1 if tuple1 is greater, equal, less, respectively,
271
/* out: number of fields */
272
const dtuple_t* tuple); /* in: tuple */
273
/****************************************************************
274
Compare two data tuples, respecting the collation of character fields. */
299
const dtuple_t* tuple1, /*!< in: tuple 1 */
300
const dtuple_t* tuple2);/*!< in: tuple 2 */
301
/************************************************************//**
302
Folds a prefix given as the number of fields of a tuple.
303
@return the folded value */
279
/* out: 1, 0 , -1 if tuple1 is greater, equal,
280
less, respectively, than tuple2 */
281
const dtuple_t* tuple1, /* in: tuple 1 */
282
const dtuple_t* tuple2);/* in: tuple 2 */
283
/****************************************************************
284
Folds a prefix given as the number of fields of a tuple. */
308
const dtuple_t* tuple, /*!< in: the tuple */
309
ulint n_fields,/*!< in: number of complete fields to fold */
310
ulint n_bytes,/*!< in: number of bytes to fold in an
289
/* out: the folded value */
290
const dtuple_t* tuple, /* in: the tuple */
291
ulint n_fields,/* in: number of complete fields to fold */
292
ulint n_bytes,/* in: number of bytes to fold in an
311
293
incomplete last field */
312
index_id_t tree_id)/*!< in: index tree id */
294
dulint tree_id)/* in: index tree id */
313
295
__attribute__((pure));
314
/*******************************************************************//**
296
/***********************************************************************
315
297
Sets types of fields binary in a tuple. */
318
300
dtuple_set_types_binary(
319
301
/*====================*/
320
dtuple_t* tuple, /*!< in: data tuple */
321
ulint n); /*!< in: number of fields to set */
322
/**********************************************************************//**
323
Checks if a dtuple contains an SQL null value.
324
@return TRUE if some field is SQL null */
302
dtuple_t* tuple, /* in: data tuple */
303
ulint n); /* in: number of fields to set */
304
/**************************************************************************
305
Checks if a dtuple contains an SQL null value. */
327
308
dtuple_contains_null(
328
309
/*=================*/
329
const dtuple_t* tuple); /*!< in: dtuple */
330
/**********************************************************//**
331
Checks that a data field is typed. Asserts an error if not.
332
@return TRUE if ok */
310
/* out: TRUE if some field is SQL null */
311
const dtuple_t* tuple); /* in: dtuple */
312
/**************************************************************
313
Checks that a data field is typed. Asserts an error if not. */
335
316
dfield_check_typed(
336
317
/*===============*/
337
const dfield_t* field); /*!< in: data field */
338
/**********************************************************//**
339
Checks that a data tuple is typed. Asserts an error if not.
340
@return TRUE if ok */
318
/* out: TRUE if ok */
319
const dfield_t* field); /* in: data field */
320
/**************************************************************
321
Checks that a data tuple is typed. Asserts an error if not. */
343
324
dtuple_check_typed(
344
325
/*===============*/
345
const dtuple_t* tuple); /*!< in: tuple */
346
/**********************************************************//**
347
Checks that a data tuple is typed.
348
@return TRUE if ok */
326
/* out: TRUE if ok */
327
const dtuple_t* tuple); /* in: tuple */
328
/**************************************************************
329
Checks that a data tuple is typed. */
351
332
dtuple_check_typed_no_assert(
352
333
/*=========================*/
353
const dtuple_t* tuple); /*!< in: tuple */
334
/* out: TRUE if ok */
335
const dtuple_t* tuple); /* in: tuple */
354
336
#ifdef UNIV_DEBUG
355
/**********************************************************//**
337
/**************************************************************
356
338
Validates the consistency of a tuple which must be complete, i.e,
357
all fields must have been set.
358
@return TRUE if ok */
339
all fields must have been set. */
363
const dtuple_t* tuple); /*!< in: tuple */
344
/* out: TRUE if ok */
345
const dtuple_t* tuple); /* in: tuple */
364
346
#endif /* UNIV_DEBUG */
365
/*************************************************************//**
347
/*****************************************************************
366
348
Pretty prints a dfield value according to its data type. */
371
const dfield_t* dfield);/*!< in: dfield */
372
/*************************************************************//**
353
const dfield_t* dfield);/* in: dfield */
354
/*****************************************************************
373
355
Pretty prints a dfield value according to its data type. Also the hex string
374
356
is printed if a string contains non-printable characters. */
377
359
dfield_print_also_hex(
378
360
/*==================*/
379
const dfield_t* dfield); /*!< in: dfield */
380
/**********************************************************//**
361
const dfield_t* dfield); /* in: dfield */
362
/**************************************************************
381
363
The following function prints the contents of a tuple. */
386
FILE* f, /*!< in: output stream */
387
const dtuple_t* tuple); /*!< in: tuple */
388
/**************************************************************//**
368
FILE* f, /* in: output stream */
369
const dtuple_t* tuple); /* in: tuple */
370
/******************************************************************
389
371
Moves parts of long fields in entry to the big record vector so that
390
372
the size of tuple drops below the maximum record size allowed in the
391
373
database. Moves data only from those fields which are not necessary
392
to determine uniquely the insertion place of the tuple in the index.
393
@return own: created big record vector, NULL if we are not able to
394
shorten the entry enough, i.e., if there are too many fixed-length or
395
short fields in entry or the index is clustered */
374
to determine uniquely the insertion place of the tuple in the index. */
398
377
dtuple_convert_big_rec(
399
378
/*===================*/
400
dict_index_t* index, /*!< in: index */
401
dtuple_t* entry, /*!< in/out: index entry */
402
ulint* n_ext); /*!< in/out: number of
379
/* out, own: created big record vector,
380
NULL if we are not able to shorten
381
the entry enough, i.e., if there are
382
too many fixed-length or short fields
383
in entry or the index is clustered */
384
dict_index_t* index, /* in: index */
385
dtuple_t* entry, /* in/out: index entry */
386
ulint* n_ext); /* in/out: number of
403
387
externally stored columns */
404
/**************************************************************//**
388
/******************************************************************
405
389
Puts back to entry the data stored in vector. Note that to ensure the
406
390
fields in entry can accommodate the data, vector must have been created
407
391
from entry with dtuple_convert_big_rec. */
410
394
dtuple_convert_back_big_rec(
411
395
/*========================*/
412
dict_index_t* index, /*!< in: index */
413
dtuple_t* entry, /*!< in: entry whose data was put to vector */
414
big_rec_t* vector);/*!< in, own: big rec vector; it is
396
dict_index_t* index, /* in: index */
397
dtuple_t* entry, /* in: entry whose data was put to vector */
398
big_rec_t* vector);/* in, own: big rec vector; it is
415
399
freed in this function */
416
/**************************************************************//**
400
/******************************************************************
417
401
Frees the memory in a big rec vector. */
420
404
dtuple_big_rec_free(
421
405
/*================*/
422
big_rec_t* vector); /*!< in, own: big rec vector; it is
406
big_rec_t* vector); /* in, own: big rec vector; it is
423
407
freed in this function */
425
409
/*######################################################################*/
427
/** Structure for an SQL data field */
411
/* Structure for an SQL data field */
428
412
struct dfield_struct{
429
void* data; /*!< pointer to data */
430
unsigned ext:1; /*!< TRUE=externally stored, FALSE=local */
431
unsigned len:32; /*!< data length; UNIV_SQL_NULL if SQL null */
432
dtype_t type; /*!< type of data */
413
void* data; /* pointer to data */
414
unsigned ext:1; /* TRUE=externally stored, FALSE=local */
415
unsigned len:32; /* data length; UNIV_SQL_NULL if SQL null */
416
dtype_t type; /* type of data */
435
/** Structure for an SQL data tuple of fields (logical record) */
436
419
struct dtuple_struct {
437
ulint info_bits; /*!< info bits of an index record:
420
ulint info_bits; /* info bits of an index record:
438
421
the default is 0; this field is used
439
422
if an index record is built from
441
ulint n_fields; /*!< number of fields in dtuple */
442
ulint n_fields_cmp; /*!< number of fields which should
424
ulint n_fields; /* number of fields in dtuple */
425
ulint n_fields_cmp; /* number of fields which should
443
426
be used in comparison services
444
427
of rem0cmp.*; the index search
445
428
is performed by comparing only these
446
429
fields, others are ignored; the
447
430
default value in dtuple creation is
448
431
the same value as n_fields */
449
dfield_t* fields; /*!< fields */
432
dfield_t* fields; /* fields */
450
433
UT_LIST_NODE_T(dtuple_t) tuple_list;
451
/*!< data tuples can be linked into a
434
/* data tuples can be linked into a
452
435
list using this field */
453
436
#ifdef UNIV_DEBUG
454
ulint magic_n; /*!< magic number, used in
456
/** Value of dtuple_struct::magic_n */
457
438
# define DATA_TUPLE_MAGIC_N 65478679
458
439
#endif /* UNIV_DEBUG */
461
/** A slot for a field in a big rec vector */
442
/* A slot for a field in a big rec vector */
462
444
typedef struct big_rec_field_struct big_rec_field_t;
463
/** A slot for a field in a big rec vector */
464
445
struct big_rec_field_struct {
465
ulint field_no; /*!< field number in record */
466
ulint len; /*!< stored data length, in bytes */
467
const void* data; /*!< stored data */
446
ulint field_no; /* field number in record */
447
ulint len; /* stored data len */
448
const void* data; /* stored data */
470
/** Storage format for overflow data in a big record, that is, a
471
clustered index record which needs external storage of data fields */
451
/* Storage format for overflow data in a big record, that is, a record
452
which needs external storage of data fields */
472
454
struct big_rec_struct {
473
mem_heap_t* heap; /*!< memory heap from which
475
ulint n_fields; /*!< number of stored fields */
476
big_rec_field_t*fields; /*!< stored fields */
455
mem_heap_t* heap; /* memory heap from which allocated */
456
ulint n_fields; /* number of stored fields */
457
big_rec_field_t* fields; /* stored fields */
479
460
#ifndef UNIV_NONINL