mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
c60a8c2f55
This will be needed for fixing Bug #22496. REC_MAX_INDEX_COL_LEN: New constant, copied from DICT_MAX_INDEX_COL_LEN. row_ext_create(), row_ext_lookup(), row_ext_lookup_low(): New functions.
39 lines
1 KiB
C
39 lines
1 KiB
C
/******************************************************
|
|
Caching of externally stored column prefixes
|
|
|
|
(c) 2006 Innobase Oy
|
|
|
|
Created September 2006 Marko Makela
|
|
*******************************************************/
|
|
|
|
#include "row0ext.h"
|
|
|
|
#ifdef UNIV_NONINL
|
|
#include "row0ext.ic"
|
|
#endif
|
|
|
|
#include "btr0cur.h"
|
|
|
|
/************************************************************************
|
|
Looks up and caches a column prefix of an externally stored column. */
|
|
|
|
byte*
|
|
row_ext_lookup_low(
|
|
/*===============*/
|
|
/* out: column prefix */
|
|
row_ext_t* ext, /* in/out: column prefix cache */
|
|
ulint i, /* in: index of ext->ext[] */
|
|
const byte* field, /* in: locally stored part of the column */
|
|
ulint f_len, /* in: length of field, in bytes */
|
|
ulint* len) /* out: length of prefix, in bytes,
|
|
at most REC_MAX_INDEX_COL_LEN */
|
|
{
|
|
byte* buf = ext->buf + i * REC_MAX_INDEX_COL_LEN;
|
|
|
|
ut_ad(i < ext->n_ext);
|
|
|
|
*len = ext->len[i] = btr_copy_externally_stored_field_prefix(
|
|
buf,
|
|
REC_MAX_INDEX_COL_LEN, ext->zip_size, field, f_len);
|
|
return(buf);
|
|
}
|