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
|
/*
* widd.h
*
* $Id$
*
* Data Dictionary
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2012 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* 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 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
*
*/
#ifndef _WIDD_H
#define _WIDD_H
#include "Dk.h"
#define MAX_NAME_LEN 100
#define MAX_QUAL_NAME_LEN 310
#define TB_MAX_COLS 301
#define VDB_TB_MAX_COLS 2001
/*
* GRANTS flags
*/
#define GR_SELECT 0x0001
#define GR_UPDATE 0x0002
#define GR_INSERT 0x0004
#define GR_DELETE 0x0008
#define GR_GRANT 0x0010 /* 'with grant option' */
#define GR_EXECUTE 0x0020
#define GR_REFERENCES 0x0040
#define GR_REXECUTE 0x0080
#define GR_UDT_UNDER 0x0100
/* Sequence number, object id */
typedef uptrlong oid_t; /* really 32 bit, but the code is too buggy */
typedef unsigned int key_id_t;
typedef unsigned char row_ver_t; /* the bit mask for what is on the row and what is an offset to another row */
typedef unsigned char key_ver_t; /* index into the bd_tree's key's key_bersions */
typedef unsigned short row_size_t;
typedef struct dbe_schema_s dbe_schema_t;
typedef struct dbe_table_s dbe_table_t;
typedef struct dbe_column_s dbe_column_t;
typedef struct dbe_key_s dbe_key_t;
typedef struct dbe_col_loc_s dbe_col_loc_t;
typedef struct dbe_storage_s dbe_storage_t;
typedef struct wi_db_s wi_db_t;
typedef enum { sc_to_table = 0, sc_to_proc = 1, sc_to_module = 2, sc_to_type = 3 } sc_object_type;
struct dbe_schema_s
{
struct dbe_schema_s *sc_prev;
dk_hash_t * sc_id_to_key;
dk_hash_t * sc_key_subkey;
dk_hash_t * sc_id_to_col;
long sc_free_since; /* msec real time when became unreferenced*/
dk_hash_t * sc_id_to_type;
#if defined (PURIFY) || defined (VALGRIND)
dk_set_t sc_old_views;
dk_set_t sc_old_types;
#endif
id_hash_t * sc_name_to_object[4];
};
#define sch_id_to_col(sc, id) \
((dbe_column_t *) gethash (DP_ADDR2VOID (id), sc->sc_id_to_col))
extern dk_mutex_t * db_schema_mtx; /* global schema hash tables */
#define DBE_NO_STAT_DATA -1
#define TB_RLS_U 0
#define TB_RLS_I 1
#define TB_RLS_D 2
#define TB_RLS_S 3
#define TB_RLS_LAST TB_RLS_S
#define TB_RLS_OP_TO_INX(op) \
((op) == 'S' ? TB_RLS_S : \
((op) == 'I' ? TB_RLS_I : \
((op) == 'U' ? TB_RLS_U : \
((op) == 'D' ? TB_RLS_D : GPF_T1 ("invalid op")))))
struct dbe_table_s
{
char * tb_name; /* qualifier.owner.name */
char * tb_name_only; /* point in the middle of tb_name, after owner */
char * tb_qualifier;
char * tb_owner;
char * tb_qualifier_name;
id_hash_t * tb_name_to_col;
dk_hash_t * tb_id_to_col;
dbe_key_t * tb_primary_key;
dk_set_t tb_keys;
dk_set_t tb_old_keys;
dk_set_t tb_cols;
dbe_schema_t * tb_schema;
struct triggers_s * tb_triggers;
dk_hash_t * tb_grants;
oid_t tb_owner_col_id;
char tb_any_blobs;
struct remote_ds_s *tb_remote_ds;
caddr_t tb_remote_name;
dk_hash_t * tb_misc_id_to_col_id;
dk_hash_t * tb_col_id_to_misc_id;
struct xml_table_ins_s * tb_xml_ins;
dbe_key_t * tb__text_key;
/* SQL statistics members */
int64 tb_count;
int64 tb_count_estimate;
double tb_geo_area;
int tb_count_delta;
/* row level security functions */
caddr_t tb_rls_procs[TB_RLS_LAST + 1];
};
typedef struct collation_s
{
caddr_t co_name;
caddr_t co_table;
char co_is_wide;
} collation_t;
struct sql_class_s;
struct sql_domain_s;
typedef struct sql_type_s
{
collation_t *sqt_collation;
uint32 sqt_precision;
dtp_t sqt_dtp;
char sqt_scale;
char sqt_non_null;
char sqt_is_xml;
struct sql_class_s * sqt_class;
caddr_t * sqt_tree;
} sql_type_t;
typedef struct cl_host_s cl_host_t;
typedef struct col_partition_s
{
oid_t cp_col_id;
sql_type_t cp_sqt;
short cp_shift; /* shift so many bits down before hash */
char cp_type;
int64 cp_mask; /* after shift, and with this */
int cp_n_first; /* for a string, use so many leading chars */
} col_partition_t;
/* for cp_type */
#define CP_INT 1
#define CP_WORD 3
typedef struct cl_host_group_s
{
struct cluster_map_s * chg_clm;
cl_host_t ** chg_hosts;
int32 * chg_slices;
char chg_status; /* any slices in read only */
} cl_host_group_t;
#define CLM_INITIAL_SLICES 1024
/* cl_slice_status */
#define CL_SLICE_RW 0 /* read write */
#define CL_SLICE_LOG 1 /* read write but special logging on write */
#define CL_SLICE_RO 2 /* read only */
/* location of data based on hash */
typedef struct cluster_map_s
{
caddr_t clm_name;
char clm_is_modulo;
int clm_n_slices;
int clm_n_replicas;
char * clm_slice_status;
cl_host_group_t ** clm_slice_map;
cl_host_group_t ** clm_hosts;
char clm_any_in_transfer; /* true if logging should check whether an extra log entry is needed due to updating a slice being relocated. True is any in cl_slice_status is CL_CLICE_LOG. */
} cluster_map_t;
typedef struct key_partition_def_s
{
cluster_map_t * kpd_map;
col_partition_t ** kpd_cols;
} key_partition_def_t;
extern cluster_map_t * clm_replicated;
typedef struct col_stat_s
{
id_hash_t * cs_distinct;
int64 cs_len;
int64 cs_n_values;
} col_stat_t;
struct dbe_column_s
{
char * col_name;
oid_t col_id;
caddr_t col_default;
char * col_check;
dk_hash_t * col_grants;
char col_is_key_part;
int col_is_autoincrement;
dbe_table_t * col_defined_in;
sql_type_t col_sqt;
char col_compression;
char col_is_misc;
char col_is_misc_cont; /* true for a misc container, e.g. E_MISC of VXML_ENTITY */
char col_is_text_index;
caddr_t col_lang;
caddr_t col_enc;
dbe_column_t ** col_offband_cols;
dbe_column_t ** col_constr_cols;
caddr_t col_xml_base_uri;
/* SQL statistics members */
int64 col_count; /* non-null */
int64 col_n_distinct; /* count of distinct */
caddr_t * col_hist;
col_stat_t * col_stat;
caddr_t col_min; /* min column value */
caddr_t col_max; /* max column value */
caddr_t * col_options; /* max column value */
long col_avg_len; /* average column length */
long col_avg_blob_len;
};
#define col_precision col_sqt.sqt_precision
#define col_scale col_sqt.sqt_scale
#define col_non_null col_sqt.sqt_non_null
#define col_collation col_sqt.sqt_collation
#define N_COMPRESS_OFFSETS 5
#define N_ROW_VERSIONS 32
#define ROW_NO_MASK 0x0fff
#define COL_OFFSET_SHIFT 12
#define COL_VAR_LEN_MASK 0x3fff /* and to get the var len field of a row length area entry */
#define COL_VAR_FLAGS_MASK 0xc000 /* and to get the var len flag bits */
#define COL_VAR_SUFFIX 0x8000 /* bit set if this var len is a suffix of an earlier col in the same place */
/* values of cl_compress and col_compress, ret codes for try offset and try prefix */
#undef CC_NONE
#define CC_UNDEFD 0
#define CC_NONE 1
#define CC_OFFSET 2
#define CC_PREFIX 3
#define CC_LAST_BYTE 4
#define ROW_SET_NULL(row, cl, rv) \
row[cl->cl_null_flag[rv]] |= cl->cl_null_mask[rv]
#define ROW_CLR_NULL(row, cl, rv) \
row[cl->cl_null_flag[rv]] &= ~cl->cl_null_mask[rv]
struct dbe_col_loc_s
{
oid_t cl_col_id;
sql_type_t cl_sqt;
row_ver_t cl_row_version_mask; /* and with row version is true if this cl is compressed on that row. 0x00 if always on row */
unsigned char cl_compression:4;
unsigned char cl_comp_asc:1; /* look for left to right for compression */
short cl_nth; /* 0 based ordinal pos in key in layout order */
short cl_fixed_len;
short cl_pos[N_ROW_VERSIONS];
short cl_null_flag[N_ROW_VERSIONS];
dtp_t cl_null_mask[N_ROW_VERSIONS];
};
#define CL_FIRST_VAR -1
#define CL_VAR -2
#define DO_CL(cl, cls) \
{ int __inx; \
for (__inx = 0; cls[__inx].cl_col_id; __inx++) { \
dbe_col_loc_t * cl = &cls[__inx];
#define END_DO_CL } }
dbe_col_loc_t * key_next_list (dbe_key_t * key, dbe_col_loc_t * list);
#define DO_ALL_CL(cl, key) \
{\
dbe_col_loc_t * __list;\
for (__list = key->key_key_fixed; __list; __list = key_next_list (key, __list))\
{\
DO_CL (cl, __list)
#define END_DO_ALL_CL END_DO_CL; } }
typedef struct dbe_key_frag_s
{
caddr_t * kf_start; /* key part values <= values accepted in this frag. NULL for first */
db_buf_t kf_start_row; /* same in leaf pointer row layout */
dbe_storage_t * kf_storage;
caddr_t kf_name; /* root is in main registry under this name */
struct index_tree_s * kf_it;
char kf_all_in_em; /*true if all pages are in the extent map and none in the system general em */
} dbe_key_frag_t;
typedef struct key_spec_s
{
struct search_spec_s * ksp_spec_array;
int (*ksp_key_cmp) (struct buffer_desc_s * buf, int pos, struct it_cursor_s * itc);
} key_spec_t;
#define ITC_KEY_INC(itc, dm) if (itc->itc_insert_key) itc->itc_insert_key->dm++;
#define KEY_MAX_VERSIONS KV_LONG_GAP /* lowest special purpose kv number */
#define KEY_VERSION_OVERFLOW -1
#define KEY_PRIMARY 1
#define KEY_PRIMARY_ORDER 2 /* starts with pk, more columns as dependent */
struct dbe_key_s
{
char * key_name;
key_id_t key_id;
dbe_table_t * key_table;
dk_set_t key_parts;
int key_n_significant;
int key_decl_parts;
char key_is_primary;
char key_is_unique;
char key_is_temp;
char key_is_bitmap;
char key_simple_compress;
key_ver_t key_version;
char key_is_col; /* column-wise layout */
char key_no_pk_ref; /* the key does not ref the main row */
char key_distinct; /* if no pk ref, do not put duplicates */
char key_not_null; /* if a significant key part is nullable and null, do not make an index entry */
key_id_t key_migrate_to;
key_id_t key_super_id;
dbe_key_t ** key_versions;
dk_set_t key_supers;
key_partition_def_t * key_partition;
dbe_col_loc_t * key_bm_cl; /* the var length string where the bits are, dependent part of a bitmap inx */
dbe_col_loc_t * key_bit_cl; /* for a bitmap inx, the last key part, the int or int64 that is the bit bitmap start */
/* access inx */
int64 key_touch;
int64 key_read;
int64 key_lock_wait;
int64 key_lock_wait_time;
int64 key_deadlocks;
int64 key_lock_set;
int64 key_lock_escalations;
int64 key_page_end_inserts;
int64 key_write_wait;
int64 key_read_wait;
int64 key_landing_wait;
int64 key_pl_wait;
dp_addr_t key_last_page;
char key_is_last_right_edge;
int64 key_n_last_page_hits;
int64 key_total_last_page_hits;
int64 key_n_landings;
key_spec_t key_insert_spec;
key_spec_t key_bm_ins_spec;
key_spec_t key_bm_ins_leading;
dk_set_t key_visible_parts; /* parts in create table order, only if primary key */
/* free text */
dbe_table_t * key_text_table;
dbe_column_t * key_text_col;
/* row layout */
short * key_part_in_layout_order; /* this is for each significant, the index in the order of layout: kf kv */
dbe_col_loc_t ** key_part_cls; /* cl's in key part order */
dk_set_t key_key_compressibles; /* compressible cls on leaf ptr */
dk_set_t key_row_compressibles; /* compressible cls on row */
dk_set_t key_key_pref_compressibles; /* prefix compressible cls on leaf ptr */
dk_set_t key_row_pref_compressibles; /* prefix compressible cls on row */
dbe_col_loc_t * key_key_fixed;
dbe_col_loc_t * key_key_var;
dbe_col_loc_t * key_row_fixed;
dbe_col_loc_t * key_row_var;
struct extent_map_s ** key_col_em; /* for col projection, column wise em */
short key_n_key_compressibles;
short key_n_row_compressibles;
short key_length_area[N_ROW_VERSIONS]; /* if key/row have variable length, the offset of the first length word */
short key_key_leaf[N_ROW_VERSIONS];
short key_row_compressed_start[N_ROW_VERSIONS]; /* compress offsets of non-key offset compressibles */
short key_key_var_start[N_ROW_VERSIONS]; /* offset of first var on leaf ptr */
short key_row_var_start[N_ROW_VERSIONS]; /* offset of first var on leaf row */
short key_null_flag_start[N_ROW_VERSIONS];
short key_null_flag_bytes[N_ROW_VERSIONS];
short key_key_len[N_ROW_VERSIONS]; /* if positive, the fixed length. If neg the -position of the 2 byte len from start of leaf ptr */
short key_row_len[N_ROW_VERSIONS]; /* if positive, the fixed length. If neg the -position of the 2 byte len from start of row */
/* Note that key_insert() in row.c contains code that will not work when keys
with multiple fragments are implemented, because It will always use the first
fragment instead of searching for the the fragment actually needed. */
dbe_key_frag_t ** key_fragments;
int key_n_fragments;
dbe_storage_t * key_storage;
caddr_t * key_options;
uint32 key_segs_sampled;
uint32 key_rows_in_sampled_segs;
id_hash_t * key_p_stat; /* for rdf inx starting with p, stats on the rest for a given p */
};
#define KEY_INSERT_SPEC(key) \
key->key_insert_spec
#define KEY_TOUCH(k) k->key_touch ++;
#define ITC_MARK_READ(it) \
{ \
dbe_key_t * k1 = it->itc_insert_key; \
it->itc_read_waits += 10000; \
if (k1) \
k1->key_read++; \
if (itc->itc_ltrx) itc->itc_ltrx->lt_client->cli_activity.da_disk_reads++; \
}
#define ITC_MARK_LOCK_WAIT(it, t) \
{ \
dbe_key_t *k1 = it->itc_insert_key; \
uint32 delay = get_msec_real_time () - t; \
if (k1) \
{ \
k1->key_lock_wait++; \
k1->key_lock_wait_time += delay; \
} \
it->itc_ltrx->lt_client->cli_activity.da_lock_wait_msec += delay; \
it->itc_ltrx->lt_client->cli_activity.da_lock_waits++; \
}
#define ITC_MARK_DEADLOCK(it) \
{ \
dbe_key_t *k1 = it->itc_insert_key; \
if (k1) \
k1->key_deadlocks++; \
}
#define ITC_MARK_LOCK_SET(it) \
{ \
dbe_key_t *k1 = it->itc_insert_key; \
if (k1) \
k1->key_lock_set++; \
}
#define ITC_MARK_LANDED(itc) \
{ \
if (itc->itc_insert_key) itc->itc_insert_key->key_n_landings++; \
if (itc->itc_ltrx && itc->itc_ltrx->lt_client) itc->itc_ltrx->lt_client->cli_activity.da_random_rows++; \
}
#define ITC_MARK_DIRTY(itc) \
if (itc->itc_insert_key) itc->itc_insert_key->key_n_dirty++
#define ITC_MARK_NEW(itc) \
if (itc->itc_insert_key) itc->itc_insert_key->key_n_new++
#define ITC_MARK_ROW(itc) \
{if (itc->itc_ltrx) itc->itc_ltrx->lt_client->cli_activity.da_seq_rows++;}
#define KEY_DECLARED_PARTS(k) \
(k->key_decl_parts ? k->key_decl_parts : k->key_n_significant)
#define NAME_SEPARATOR '.'
typedef struct triggers_s
{
dk_set_t trig_list;
} triggers_t;
/*
System tables, columns and keys.
*/
/*
SYS_COLS: TABLE, COL > ID
SYS_COL_DEFS: ID> DTP, ....
SYS_KEYS: TABLE, KEY > KEY_ID, N_SIGNIFICANT, CLUSTER_ON_ID
SYS_KEY_PARTS: KEY_ID, N > COL_ID
For each table:
Name, Key ID, ID's of cols
TN_<table name>
KI_<table name>
CI_<tbl>_<col>
CN_<tbl><col>
*/
/*
create_table SYS_COLS (TABLE COLUMN COL_ID COL_DTP)
create_unique_nidex SYS_COLS on SYS_COLS (COL_ID)
create_index SYS_COLS_BY_NAME on SYS_COLS (TABLE COLUMN)
create_table SYS_KEYS (KEY_TABLE KEY_NAME KEY_ID KEY_N_SIGNIFICANT
KEY_CLUSTER_ON_ID KEY_IS_MAIN KEY_IS_OBJECT_ID
KEY_IS_UNIQUE KEY_MIGRATE_TO)
create_unique_index SYS_KEYS on SYS_KEYS (KEY_TABLE KEY_NAME)
create_index SYS_KEYS_BY_ID on SYS_KEYS (KEY_ID)
create_table SYS_KEY_PARTS (KP_KEY_ID KP_NTH KP_COL)
create_unique_index SYS_KEY_PARTS on SYS_KEY_PARTS (KP_KEY_ID KP_NTH)
*/
#define TN_COLS "DB.DBA.SYS_COLS"
#define TN_KEYS "DB.DBA.SYS_KEYS"
#define TN_KEY_PARTS "DB.DBA.SYS_KEY_PARTS"
#define TN_COLLATIONS "DB.DBA.SYS_COLLATIONS"
#define TN_CHARSETS "DB.DBA.SYS_CHARSETS"
#define TN_SUB "DB.DBA.SYS_KEY_SUBKEY"
#define TN_FRAGS "DB.DBA.SYS_KEY_FRAGMENTS"
#define TN_UDT "DB.DBA.SYS_USER_TYPES"
#define KI_COLS 1
#define KI_COLS_ID 2
#define KI_KEYS 3
#define KI_KEYS_ID 21
#define KI_KEY_PARTS 4
#define KI_OBJECT_ID 5
#define KI_COLLATIONS 6
#define KI_CHARSETS 7
#define KV_LEAF_PTR 0
#define KV_LEFT_DUMMY 127
#define KI_SUB 9
#define KV_GAP 126 /* on page layout, the next byte is 8 bit length of free space from KV_GAP */
#define KV_LONG_GAP 125 /* on page layout, 2 next bytes are the length of free space, from DV_LONG_GAP */
#define MAX_KV_GAP_BYTES 3 /* longest gap marker len */
#define KI_FRAGS 10
#define KI_UDT 11
#define KI_SORT_TEMP 22
#define KI_DISTINCT 23
#define KI_IS_TEMP(k_id) (k_id >= 22 && k_id <= 199)
#define CI_COLS_TBL 1
#define CI_COLS_COL 2
#define CI_COLS_COL_ID 3
#define CI_COLS_DTP 5
#define CI_COLS_PREC 22
#define CI_COLS_SCALE 23
#define CI_COLS_DEFAULT 24
#define CI_COLS_CHECK 25
#define CI_COLS_NULLABLE 26
#define CI_COLS_NTH 27
#define CI_COLS_OPTIONS 43
#define CI_KEYS_TBL 6
#define CI_KEYS_KEY 7
#define CI_KEYS_ID 8
#define CI_KEYS_SIGNIFICANT 9
#define CI_KEYS_CLUSTER_ON_ID 10
#define CI_KEYS_IS_MAIN 14
#define CI_KEYS_IS_OBJECT_ID 16
#define CI_KEYS_IS_UNIQUE 17
#define CI_KEYS_MIGRATE_TO 19
#define CI_KEYS_SUPER_ID 20
#define CI_KEYS_DECL_PARTS 21
#define CI_KEYS_STORAGE 36
#define CI_KEYS_OPTIONS 37
#define CI_KEYS_VERSION 49
#define CI_KPARTS_ID 11
#define CI_KPARTS_N 12
#define CI_KPARTS_COL_ID 13
#define CI_COLLATIONS_NAME 28
#define CI_COLLATIONS_WIDE 29
#define CI_COLLATIONS_TABLE 30
#define CI_CHARSET_NAME 31
#define CI_CHARSET_TABLE 32
#define CI_CHARSET_ALIASES 33
#define CI_SUB_SUPER 34
#define CI_SUB_SUB 35
#define CI_FRAGS_KEY 38
#define CI_FRAGS_NO 39
#define CI_FRAGS_START 40
#define CI_FRAGS_STORAGE 41
#define CI_FRAGS_SERVER 42
#define CI_UDT_NAME 44
#define CI_UDT_PARSE_TREE 45
#define CI_UDT_ID 46
#define CI_UDT_MIGRATE_TO 47
#define CI_BITMAP 48 /*invisible string col at the end of a bitmap inx leaf. One shared among all. &*/
#define CN_COLS_TBL "TABLE"
#define CN_COLS_COL "COLUMN"
#define CN_COLS_COL_ID "COL_ID"
#define CN_COLS_DTP "COL_DTP"
#define CN_COLS_PREC "COL_PREC"
#define CN_COLS_SCALE "COL_SCALE"
#define CN_COLS_DEFAULT "COL_DEFAULT"
#define CN_COLS_CHECK "COL_CHECK"
#define CN_COLS_NULLABLE "COL_NULLABLE"
#define CN_COLS_NTH "COL_NTH"
#define CN_COLS_OPTIONS "COL_OPTIONS"
#define CN_KEYS_TBL "KEY_TABLE"
#define CN_KEYS_KEY "KEY_NAME"
#define CN_KEYS_ID "KEY_ID"
#define CN_KEYS_SIGNIFICANT "KEY_N_SIGNIFICANT"
#define CN_KEYS_CLUSTER_ON_ID "KEY_CLUSTER_ON_ID"
#define CN_KEYS_IS_MAIN "KEY_IS_MAIN"
#define CN_KEYS_IS_OBJECT_ID "KEY_IS_OBJECT_ID"
#define CN_KEYS_IS_UNIQUE "KEY_IS_UNIQUE"
#define CN_KEYS_MIGRATE_TO "KEY_MIGRATE_TO"
#define CN_KEYS_SUPER_ID "KEY_SUPER_ID"
#define CN_KEYS_DECL_PARTS "KEY_DECL_PARTS"
#define CN_KEYS_STORAGE "KEY_STORAGE"
#define CN_KEYS_OPTIONS "KEY_OPTIONS"
#define CN_KEYS_VERSION "KEY_VERSION"
#define CN_KPARTS_ID "KP_KEY_ID"
#define CN_KPARTS_N "KP_NTH"
#define CN_KPARTS_COL_ID "KP_COL"
#define CN_COLLATIONS_NAME "COLL_NAME"
#define CN_COLLATIONS_TABLE "COLL_TABLE"
#define CN_COLLATIONS_WIDE "COLL_WIDE"
#define CN_CHARSET_NAME "CS_NAME"
#define CN_CHARSET_TABLE "CS_TABLE"
#define CN_CHARSET_ALIASES "CS_ALIASES"
#define CN_SUB_SUPER "SUPER"
#define CN_SUB_SUB "SUB"
#define CN_FRAGS_KEY "FRAG_KEY"
#define CN_FRAGS_NO "FRAG_NO"
#define CN_FRAGS_START "FRAG_START"
#define CN_FRAGS_STORAGE "FRAG_STORAGE"
#define CN_FRAGS_SERVER "FRAG_SERVER"
#define CN_UDT_NAME "UT_NAME"
#define CN_UDT_PARSE_TREE "UT_PARSE_TREE"
#define CN_UDT_ID "UT_ID"
#define CN_UDT_MIGRATE_TO "UT_MIGRATE_TO"
/* Special ID's */
#define CI_INDEX 197
#define CI_ANY 198
#define CI_ROW 199
#define DD_FIRST_PRIVATE_OID 200
#define DD_FIRST_FREE_OID 1000
#define KI_TEMP 0xffff
/* marks query temp keys */
struct search_spec_s * dbe_key_insert_spec (dbe_key_t * key);
dbe_schema_t * dbe_schema_create (dbe_schema_t *sc);
void sch_create_meta_seed (dbe_schema_t * sc, dbe_schema_t * prev_sc);
void dbe_schema_free (dbe_schema_t * sc);
dbe_table_t * dbe_table_create (dbe_schema_t * sc, const char * name);
dbe_column_t * dbe_column_add (dbe_table_t * tb, const char * name, oid_t id,
dtp_t dtp);
dbe_key_t * dbe_key_create (dbe_schema_t * sc, dbe_table_t * tb, const char * name,
key_id_t id, int n_significant, int cluster_on_id, int is_main,
key_id_t migrate_to, key_id_t super_id);
dbe_key_t * tb_text_key (dbe_table_t *tb);
void key_add_part (dbe_key_t * key, oid_t col);
void sqt_max_desc (sql_type_t * res, sql_type_t * arg);
int dbe_cols_are_valid (db_buf_t row, dbe_key_t * key, int throw_error);
#endif
|