From d8ba4608e246e66187528a813b84616b4ba6a290 Mon Sep 17 00:00:00 2001 From: Bomin Zhang Date: Wed, 28 Oct 2020 18:36:31 +0800 Subject: [PATCH] fix td-1834 --- src/query/inc/qExecutor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/query/inc/qExecutor.h b/src/query/inc/qExecutor.h index f392644e67..9a79c21905 100644 --- a/src/query/inc/qExecutor.h +++ b/src/query/inc/qExecutor.h @@ -34,8 +34,8 @@ typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, char* val1, c typedef int32_t (*__block_search_fn_t)(char* data, int32_t num, int64_t key, int32_t order); typedef struct SPosInfo { - int32_t pageId:20; - int32_t rowId:12; + int32_t pageId; + int32_t rowId; } SPosInfo; typedef struct SGroupResInfo { -- GitLab