[FTS] Add doc id column flag

This commit is contained in:
Tyshawn 2024-02-08 07:22:15 +00:00 committed by ob-robot
parent 97d79c5a48
commit 9d8405a821

View File

@ -126,6 +126,7 @@ static const uint64_t OB_MIN_ID = 0;//used for lower_bound
#define PAD_WHEN_CALC_GENERATED_COLUMN_FLAG (INT64_C(1) << 19)
#define GENERATED_COLUMN_UDF_EXPR (INT64_C(1) << 20)
#define UNUSED_COLUMN_FLAG (INT64_C(1) << 21) // check if the column is unused.
#define GENERATED_DOC_ID_COLUMN_FLAG (INT64_C(1) << 22)
//the high 32-bit flag isn't stored in __all_column
#define GENERATED_DEPS_CASCADE_FLAG (INT64_C(1) << 32)