8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00
This commit is contained in:
dimitr 2012-01-08 09:40:58 +00:00
parent f5f8a27a7d
commit ea73eb8935
2 changed files with 8 additions and 8 deletions

View File

@ -110,7 +110,7 @@ const int idx_first_intl_string = 64; // .. MAX (short) Range of computed key st
const int idx_offset_intl_range = (0x7FFF + idx_first_intl_string);
// these flags must match the irt_flags
// these flags must match the irt_flags (see ods.h)
const int idx_unique = 1;
const int idx_descending = 2;

View File

@ -340,13 +340,13 @@ struct irtd
float irtd_selectivity;
};
// irtd_itype
const USHORT irt_unique = 1; // Tested in validation.cpp's walk_index but never set!
//const USHORT irt_descending = 2;
const USHORT irt_in_progress= 4;
//const USHORT irt_foreign = 8;
//const USHORT irt_primary = 16;
const USHORT irt_expression = 32; // Tested, disabled and restored in validation.cpp but never set originally
// irt_flags, must match the idx_flags (see btr.h)
const USHORT irt_unique = 1;
const USHORT irt_descending = 2;
const USHORT irt_in_progress = 4;
const USHORT irt_foreign = 8;
const USHORT irt_primary = 16;
const USHORT irt_expression = 32;
const int STUFF_COUNT = 4;