From 2f02e8754bab7fd419eb703dd7e4a4cd5572db0d Mon Sep 17 00:00:00 2001 From: bipbipbip <115874695+707state@users.noreply.github.com> Date: Thu, 18 Apr 2024 09:32:15 +0800 Subject: [PATCH 1/3] Update types.h --- src/observer/common/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/observer/common/types.h b/src/observer/common/types.h index 56f0d0f1b..745af94cf 100644 --- a/src/observer/common/types.h +++ b/src/observer/common/types.h @@ -11,7 +11,7 @@ See the Mulan PSL v2 for more details. */ // // Created by Wangyunlai on 2022/6/23. // - +#include #pragma once /// 磁盘文件,包括存放数据的文件和索引(B+-Tree)文件,都按照页来组织 From 489dad358cf8c432a6b6d7593acb4924df9b2163 Mon Sep 17 00:00:00 2001 From: bipbipbip <115874695+707state@users.noreply.github.com> Date: Thu, 18 Apr 2024 09:46:19 +0800 Subject: [PATCH 2/3] Update types.h --- src/observer/common/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/observer/common/types.h b/src/observer/common/types.h index 745af94cf..8dda2dac5 100644 --- a/src/observer/common/types.h +++ b/src/observer/common/types.h @@ -11,9 +11,9 @@ See the Mulan PSL v2 for more details. */ // // Created by Wangyunlai on 2022/6/23. // -#include -#pragma once +#pragma once +#include /// 磁盘文件,包括存放数据的文件和索引(B+-Tree)文件,都按照页来组织 /// 每一页都有一个编号,称为PageNum using PageNum = int32_t; From 32a884b9d194afbb0e770c4bb2ff45df43756740 Mon Sep 17 00:00:00 2001 From: wangyunlai Date: Thu, 18 Apr 2024 10:00:25 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E4=BB=A5=E6=BB=A1=E8=B6=B3clang-format=E7=9A=84=E8=A6=81?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/observer/common/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/observer/common/types.h b/src/observer/common/types.h index 8dda2dac5..947cd1a7d 100644 --- a/src/observer/common/types.h +++ b/src/observer/common/types.h @@ -13,7 +13,7 @@ See the Mulan PSL v2 for more details. */ // #pragma once -#include +#include /// 磁盘文件,包括存放数据的文件和索引(B+-Tree)文件,都按照页来组织 /// 每一页都有一个编号,称为PageNum using PageNum = int32_t;