[FTS] add enum type

This commit is contained in:
wz-WillZheng 2024-12-06 04:45:09 +00:00 committed by ob-robot
parent ed1b80da69
commit d019530620
2 changed files with 5 additions and 5 deletions

View File

@ -293,9 +293,9 @@ int ObLLVMDIHelper::create_member_type(const ObString &name, uint64_t offset_bit
}
int ObLLVMDIHelper::create_struct_type(
const ObString &name, uint32_t line, uint64_t size_bits, uint64_t align_bits,
ObIArray<ObLLVMDIType> &member_types, ObLLVMDIType &struct_type)
{
const ObString &name, uint32_t line, uint64_t size_bits, uint64_t align_bits,
ObIArray<ObLLVMDIType> &member_types, ObLLVMDIType &struct_type)
{
// see DIBuilder::finalize() in IR/DIBuilder.cpp:
// 70 SmallVector<Metadata *, 4> Variables;
// 71

View File

@ -89,8 +89,8 @@ public:
enum TokenRelationType
{
DISJUNCTIVE = 0,
// CONJUNCTIVE = 1,
// BOOLEAN = 2,
CONJUNCTIVE = 1,
BOOLEAN = 2,
MAX_RELATION_TYPE
};
enum RetrievalProcType