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
|
#ifndef TARANTOOL_BOX_INDEX_H_INCLUDED
#define TARANTOOL_BOX_INDEX_H_INCLUDED
/*
* Copyright 2010-2016, Tarantool AUTHORS, please see AUTHORS file.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <stdbool.h>
#include "trivia/util.h"
#include "iterator_type.h"
#include "index_def.h"
#if defined(__cplusplus)
extern "C" {
#endif /* defined(__cplusplus) */
struct tuple;
struct engine;
struct index;
struct index_def;
struct key_def;
struct info_handler;
/** \cond public */
typedef struct tuple box_tuple_t;
typedef struct key_def box_key_def_t;
typedef struct iterator box_iterator_t;
/**
* Allocate and initialize iterator for space_id, index_id.
*
* A returned iterator must be destroyed by box_iterator_free().
*
* \param space_id space identifier.
* \param index_id index identifier.
* \param type \link iterator_type iterator type \endlink
* \param key encoded key in MsgPack Array format ([part1, part2, ...]).
* \param key_end the end of encoded \a key
* \retval NULL on error (check box_error_last())
* \retval iterator otherwise
* \sa box_iterator_next()
* \sa box_iterator_free()
*/
box_iterator_t *
box_index_iterator(uint32_t space_id, uint32_t index_id, int type,
const char *key, const char *key_end);
/**
* Retrive the next item from the \a iterator.
*
* \param iterator an iterator returned by box_index_iterator().
* \param[out] result a tuple or NULL if there is no more data.
* \retval -1 on error (check box_error_last() for details)
* \retval 0 on success. The end of data is not an error.
*/
int
box_iterator_next(box_iterator_t *iterator, box_tuple_t **result);
/**
* Destroy and deallocate iterator.
*
* \param iterator an interator returned by box_index_iterator()
*/
void
box_iterator_free(box_iterator_t *iterator);
/**
* Return the number of element in the index.
*
* \param space_id space identifier
* \param index_id index identifier
* \retval -1 on error (check box_error_last())
* \retval >= 0 otherwise
*/
ssize_t
box_index_len(uint32_t space_id, uint32_t index_id);
/**
* Return the number of bytes used in memory by the index.
*
* \param space_id space identifier
* \param index_id index identifier
* \retval -1 on error (check box_error_last())
* \retval >= 0 otherwise
*/
ssize_t
box_index_bsize(uint32_t space_id, uint32_t index_id);
/**
* Return a random tuple from the index (useful for statistical analysis).
*
* \param space_id space identifier
* \param index_id index identifier
* \param rnd random seed
* \param[out] result a tuple or NULL if index is empty
* \retval -1 on error (check box_error_last())
* \retval 0 on success
* \sa \code box.space[space_id].index[index_id]:random(rnd) \endcode
*/
int
box_index_random(uint32_t space_id, uint32_t index_id, uint32_t rnd,
box_tuple_t **result);
/**
* Get a tuple from index by the key.
*
* Please note that this function works much more faster than
* box_select() or box_index_iterator() + box_iterator_next().
*
* \param space_id space identifier
* \param index_id index identifier
* \param key encoded key in MsgPack Array format ([part1, part2, ...]).
* \param key_end the end of encoded \a key
* \param[out] result a tuple or NULL if index is empty
* \retval -1 on error (check box_error_last())
* \retval 0 on success
* \pre key != NULL
* \sa \code box.space[space_id].index[index_id]:get(key) \endcode
*/
int
box_index_get(uint32_t space_id, uint32_t index_id, const char *key,
const char *key_end, box_tuple_t **result);
/**
* Return a first (minimal) tuple matched the provided key.
*
* \param space_id space identifier
* \param index_id index identifier
* \param key encoded key in MsgPack Array format ([part1, part2, ...]).
* \param key_end the end of encoded \a key.
* \param[out] result a tuple or NULL if index is empty
* \retval -1 on error (check box_error_last())
* \retval 0 on success
* \sa \code box.space[space_id].index[index_id]:min(key) \endcode
*/
int
box_index_min(uint32_t space_id, uint32_t index_id, const char *key,
const char *key_end, box_tuple_t **result);
/**
* Return a last (maximal) tuple matched the provided key.
*
* \param space_id space identifier
* \param index_id index identifier
* \param key encoded key in MsgPack Array format ([part1, part2, ...]).
* \param key_end the end of encoded \a key.
* \param[out] result a tuple or NULL if index is empty
* \retval -1 on error (check box_error_last())
* \retval 0 on success
* \sa \code box.space[space_id].index[index_id]:max(key) \endcode
*/
int
box_index_max(uint32_t space_id, uint32_t index_id, const char *key,
const char *key_end, box_tuple_t **result);
/**
* Count the number of tuple matched the provided key.
*
* \param space_id space identifier
* \param index_id index identifier
* \param type iterator type - enum \link iterator_type \endlink
* \param key encoded key in MsgPack Array format ([part1, part2, ...]).
* \param key_end the end of encoded \a key.
* \retval -1 on error (check box_error_last())
* \retval >=0 on success
* \sa \code box.space[space_id].index[index_id]:count(key,
* { iterator = type }) \endcode
*/
ssize_t
box_index_count(uint32_t space_id, uint32_t index_id, int type,
const char *key, const char *key_end);
/**
* Extract key from tuple according to key definition of given
* index. Returned buffer is allocated on box_txn_alloc() with
* this key.
* @param tuple Tuple from which need to extract key.
* @param space_id Space identifier.
* @param index_id Index identifier.
* @retval not NULL Success
* @retval NULL Memory Allocation error
*/
char *
box_tuple_extract_key(box_tuple_t *tuple, uint32_t space_id,
uint32_t index_id, uint32_t *key_size);
/** \endcond public */
/**
* Index statistics (index:stat())
*
* \param space_id space identifier
* \param index_id index identifier
* \param info info handler
* \retval -1 on error (check box_error_last())
* \retval >=0 on success
*/
int
box_index_stat(uint32_t space_id, uint32_t index_id,
struct info_handler *info);
/**
* Trigger index compaction (index:compact())
*
* \param space_id space identifier
* \param index_id index identifier
* \retval -1 on error (check box_error_last())
* \retval >=0 on success
*/
int
box_index_compact(uint32_t space_id, uint32_t index_id);
struct iterator {
/**
* Iterate to the next tuple.
* The tuple is returned in @ret (NULL if EOF).
* Returns 0 on success, -1 on error.
*/
int (*next)(struct iterator *it, struct tuple **ret);
/** Destroy the iterator. */
void (*free)(struct iterator *);
/** Space cache version at the time of the last index lookup. */
uint32_t space_cache_version;
/** ID of the space the iterator is for. */
uint32_t space_id;
/** ID of the index the iterator is for. */
uint32_t index_id;
/**
* Pointer to the index the iterator is for.
* Guaranteed to be valid only if the schema
* state has not changed since the last lookup.
*/
struct index *index;
};
/**
* Initialize a base iterator structure.
*
* This function is supposed to be used only by
* index implementation so never call it directly,
* use index_create_iterator() instead.
*/
void
iterator_create(struct iterator *it, struct index *index);
/**
* Iterate to the next tuple.
*
* The tuple is returned in @ret (NULL if EOF).
* Returns 0 on success, -1 on error.
*/
int
iterator_next(struct iterator *it, struct tuple **ret);
/**
* Destroy an iterator instance and free associated memory.
*/
void
iterator_delete(struct iterator *it);
/**
* Snapshot iterator.
* \sa index::create_snapshot_iterator().
*/
struct snapshot_iterator {
/**
* Iterate to the next tuple in the snapshot.
* Returns a pointer to the tuple data and its
* size or NULL if EOF.
*/
int (*next)(struct snapshot_iterator *,
const char **data, uint32_t *size);
/**
* Destroy the iterator.
*/
void (*free)(struct snapshot_iterator *);
};
/**
* Check that the key has correct part count and correct part size
* for use in an index iterator.
*
* @param index_def key definition
* @param type iterator type (see enum iterator_type)
* @param key msgpack-encoded key
* @param part_count number of parts in \a key
*
* @retval 0 The key is valid.
* @retval -1 The key is invalid.
*/
int
key_validate(const struct index_def *index_def, enum iterator_type type,
const char *key, uint32_t part_count);
/**
* Check that the supplied key is valid for a search in a unique
* index (i.e. the key must be fully specified).
* @retval 0 The key is valid.
* @retval -1 The key is invalid.
*/
int
exact_key_validate(struct key_def *key_def, const char *key,
uint32_t part_count);
/**
* The manner in which replace in a unique index must treat
* duplicates (tuples with the same value of indexed key),
* possibly present in the index.
*/
enum dup_replace_mode {
/**
* If a duplicate is found, delete it and insert
* a new tuple instead. Otherwise, insert a new tuple.
*/
DUP_REPLACE_OR_INSERT,
/**
* If a duplicate is found, produce an error.
* I.e. require that no old key exists with the same
* value.
*/
DUP_INSERT,
/**
* Unless a duplicate exists, throw an error.
*/
DUP_REPLACE
};
struct index_vtab {
/** Free an index instance. */
void (*destroy)(struct index *);
/**
* Called after WAL write to commit index creation.
* Must not fail.
*
* @signature is the LSN that was assigned to the row
* that created the index. If the index was created by
* a snapshot row, it is set to the snapshot signature.
*/
void (*commit_create)(struct index *index, int64_t signature);
/**
* Called if index creation failed, either due to
* WAL write error or build error.
*/
void (*abort_create)(struct index *index);
/**
* Called after WAL write to comit index definition update.
* Must not fail.
*
* @signature is the LSN that was assigned to the row
* that modified the index.
*/
void (*commit_modify)(struct index *index, int64_t signature);
/**
* Called after WAL write to commit index drop.
* Must not fail.
*
* @signature is the LSN that was assigned to the row
* that dropped the index.
*/
void (*commit_drop)(struct index *index, int64_t signature);
/**
* Called after index definition update that did not
* require index rebuild.
*/
void (*update_def)(struct index *);
/**
* Return true if the index depends on the primary
* key definition and hence needs to be updated if
* the primary key is modified.
*/
bool (*depends_on_pk)(struct index *);
/**
* Return true if the change of index definition
* cannot be done without rebuild.
*/
bool (*def_change_requires_rebuild)(struct index *index,
const struct index_def *new_def);
ssize_t (*size)(struct index *);
ssize_t (*bsize)(struct index *);
int (*min)(struct index *index, const char *key,
uint32_t part_count, struct tuple **result);
int (*max)(struct index *index, const char *key,
uint32_t part_count, struct tuple **result);
int (*random)(struct index *index, uint32_t rnd, struct tuple **result);
ssize_t (*count)(struct index *index, enum iterator_type type,
const char *key, uint32_t part_count);
int (*get)(struct index *index, const char *key,
uint32_t part_count, struct tuple **result);
int (*replace)(struct index *index, struct tuple *old_tuple,
struct tuple *new_tuple, enum dup_replace_mode mode,
struct tuple **result);
/** Create an index iterator. */
struct iterator *(*create_iterator)(struct index *index,
enum iterator_type type,
const char *key, uint32_t part_count);
/**
* Create an ALL iterator with personal read view so further
* index modifications will not affect the iteration results.
* Must be destroyed by iterator_delete() after usage.
*/
struct snapshot_iterator *(*create_snapshot_iterator)(struct index *);
/** Introspection (index:stat()) */
void (*stat)(struct index *, struct info_handler *);
/**
* Trigger asynchronous index compaction. What exactly
* is implied under 'compaction' depends on the engine.
*/
void (*compact)(struct index *);
/** Reset all incremental statistic counters. */
void (*reset_stat)(struct index *);
/**
* Two-phase index creation: begin building, add tuples, finish.
*/
void (*begin_build)(struct index *);
/**
* Optional hint, given to the index, about
* the total size of the index. Called after
* begin_build().
*/
int (*reserve)(struct index *index, uint32_t size_hint);
int (*build_next)(struct index *index, struct tuple *tuple);
void (*end_build)(struct index *index);
};
struct index {
/** Virtual function table. */
const struct index_vtab *vtab;
/** Engine used by this index. */
struct engine *engine;
/* Description of a possibly multipart key. */
struct index_def *def;
/** Reference counter. */
int refs;
/* Space cache version at the time of construction. */
uint32_t space_cache_version;
};
/**
* Check if replacement of an old tuple with a new one is
* allowed.
*/
static inline uint32_t
replace_check_dup(struct tuple *old_tuple, struct tuple *dup_tuple,
enum dup_replace_mode mode)
{
if (dup_tuple == NULL) {
if (mode == DUP_REPLACE) {
/*
* dup_replace_mode is DUP_REPLACE, and
* a tuple with the same key is not found.
*/
return old_tuple ?
ER_CANT_UPDATE_PRIMARY_KEY : ER_TUPLE_NOT_FOUND;
}
} else { /* dup_tuple != NULL */
if (dup_tuple != old_tuple &&
(old_tuple != NULL || mode == DUP_INSERT)) {
/*
* There is a duplicate of new_tuple,
* and it's not old_tuple: we can't
* possibly delete more than one tuple
* at once.
*/
return ER_TUPLE_FOUND;
}
}
return 0;
}
/**
* Initialize an index instance.
* Note, this function copies the given index definition.
*/
int
index_create(struct index *index, struct engine *engine,
const struct index_vtab *vtab, struct index_def *def);
/** Free an index instance. */
void
index_delete(struct index *index);
/**
* Increment the reference counter of an index to prevent
* it from being destroyed when the space it belongs to is
* freed.
*/
static inline void
index_ref(struct index *index)
{
assert(index->refs > 0);
index->refs++;
}
/**
* Decrement the reference counter of an index.
* Destroy the index if it isn't used anymore.
*/
static inline void
index_unref(struct index *index)
{
assert(index->refs > 0);
if (--index->refs == 0)
index_delete(index);
}
/** Build this index based on the contents of another index. */
int
index_build(struct index *index, struct index *pk);
static inline void
index_commit_create(struct index *index, int64_t signature)
{
index->vtab->commit_create(index, signature);
}
static inline void
index_abort_create(struct index *index)
{
index->vtab->abort_create(index);
}
static inline void
index_commit_modify(struct index *index, int64_t signature)
{
index->vtab->commit_modify(index, signature);
}
static inline void
index_commit_drop(struct index *index, int64_t signature)
{
index->vtab->commit_drop(index, signature);
}
static inline void
index_update_def(struct index *index)
{
index->vtab->update_def(index);
}
static inline bool
index_depends_on_pk(struct index *index)
{
return index->vtab->depends_on_pk(index);
}
static inline bool
index_def_change_requires_rebuild(struct index *index,
const struct index_def *new_def)
{
return index->vtab->def_change_requires_rebuild(index, new_def);
}
static inline ssize_t
index_size(struct index *index)
{
return index->vtab->size(index);
}
static inline ssize_t
index_bsize(struct index *index)
{
return index->vtab->bsize(index);
}
static inline int
index_min(struct index *index, const char *key,
uint32_t part_count, struct tuple **result)
{
return index->vtab->min(index, key, part_count, result);
}
static inline int
index_max(struct index *index, const char *key,
uint32_t part_count, struct tuple **result)
{
return index->vtab->max(index, key, part_count, result);
}
static inline int
index_random(struct index *index, uint32_t rnd, struct tuple **result)
{
return index->vtab->random(index, rnd, result);
}
static inline ssize_t
index_count(struct index *index, enum iterator_type type,
const char *key, uint32_t part_count)
{
return index->vtab->count(index, type, key, part_count);
}
static inline int
index_get(struct index *index, const char *key,
uint32_t part_count, struct tuple **result)
{
return index->vtab->get(index, key, part_count, result);
}
static inline int
index_replace(struct index *index, struct tuple *old_tuple,
struct tuple *new_tuple, enum dup_replace_mode mode,
struct tuple **result)
{
return index->vtab->replace(index, old_tuple, new_tuple, mode, result);
}
static inline struct iterator *
index_create_iterator(struct index *index, enum iterator_type type,
const char *key, uint32_t part_count)
{
return index->vtab->create_iterator(index, type, key, part_count);
}
static inline struct snapshot_iterator *
index_create_snapshot_iterator(struct index *index)
{
return index->vtab->create_snapshot_iterator(index);
}
static inline void
index_stat(struct index *index, struct info_handler *handler)
{
index->vtab->stat(index, handler);
}
static inline void
index_compact(struct index *index)
{
index->vtab->compact(index);
}
static inline void
index_reset_stat(struct index *index)
{
index->vtab->reset_stat(index);
}
static inline void
index_begin_build(struct index *index)
{
index->vtab->begin_build(index);
}
static inline int
index_reserve(struct index *index, uint32_t size_hint)
{
return index->vtab->reserve(index, size_hint);
}
static inline int
index_build_next(struct index *index, struct tuple *tuple)
{
return index->vtab->build_next(index, tuple);
}
static inline void
index_end_build(struct index *index)
{
index->vtab->end_build(index);
}
/*
* Virtual method stubs.
*/
void generic_index_commit_create(struct index *, int64_t);
void generic_index_abort_create(struct index *);
void generic_index_commit_modify(struct index *, int64_t);
void generic_index_commit_drop(struct index *, int64_t);
void generic_index_update_def(struct index *);
bool generic_index_depends_on_pk(struct index *);
bool generic_index_def_change_requires_rebuild(struct index *,
const struct index_def *);
ssize_t generic_index_bsize(struct index *);
ssize_t generic_index_size(struct index *);
int generic_index_min(struct index *, const char *, uint32_t, struct tuple **);
int generic_index_max(struct index *, const char *, uint32_t, struct tuple **);
int generic_index_random(struct index *, uint32_t, struct tuple **);
ssize_t generic_index_count(struct index *, enum iterator_type,
const char *, uint32_t);
int generic_index_get(struct index *, const char *, uint32_t, struct tuple **);
int generic_index_replace(struct index *, struct tuple *, struct tuple *,
enum dup_replace_mode, struct tuple **);
struct snapshot_iterator *generic_index_create_snapshot_iterator(struct index *);
void generic_index_stat(struct index *, struct info_handler *);
void generic_index_compact(struct index *);
void generic_index_reset_stat(struct index *);
void generic_index_begin_build(struct index *);
int generic_index_reserve(struct index *, uint32_t);
struct iterator *
generic_index_create_iterator(struct index *base, enum iterator_type type,
const char *key, uint32_t part_count);
int generic_index_build_next(struct index *, struct tuple *);
void generic_index_end_build(struct index *);
int
disabled_index_build_next(struct index *index, struct tuple *tuple);
int
disabled_index_replace(struct index *index, struct tuple *old_tuple,
struct tuple *new_tuple, enum dup_replace_mode mode,
struct tuple **result);
#if defined(__cplusplus)
} /* extern "C" */
#include "diag.h"
/*
* A wrapper for ClientError(ER_UNSUPPORTED_INDEX_FEATURE, ...) to format
* nice error messages (see gh-1042). You never need to catch this class.
*/
class UnsupportedIndexFeature: public ClientError {
public:
UnsupportedIndexFeature(const char *file, unsigned line,
struct index_def *index_def, const char *what);
};
struct IteratorGuard
{
struct iterator *it;
IteratorGuard(struct iterator *it_arg) : it(it_arg) {}
~IteratorGuard() { iterator_delete(it); }
};
/*
* C++ wrappers around index methods.
* They throw an exception in case of error.
*/
static inline struct iterator *
index_create_iterator_xc(struct index *index, enum iterator_type type,
const char *key, uint32_t part_count)
{
struct iterator *it = index_create_iterator(index, type,
key, part_count);
if (it == NULL)
diag_raise();
return it;
}
static inline struct tuple *
iterator_next_xc(struct iterator *it)
{
struct tuple *tuple;
if (iterator_next(it, &tuple) != 0)
diag_raise();
return tuple;
}
#endif /* defined(__plusplus) */
#endif /* TARANTOOL_BOX_INDEX_H_INCLUDED */
|