From 3715f28a992184e1078ac0f5ae0e1879f6aaccd1 Mon Sep 17 00:00:00 2001 From: renjiecui Date: Thu, 26 Oct 2023 19:06:56 +0800 Subject: [PATCH] modify include data Signed-off-by: renjiecui --- distributeddatamgr/relational_store/include/oh_cursor.h | 2 +- .../relational_store/include/oh_predicates.h | 2 +- .../relational_store/include/oh_values_bucket.h | 2 +- .../relational_store/include/relational_store.h | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/distributeddatamgr/relational_store/include/oh_cursor.h b/distributeddatamgr/relational_store/include/oh_cursor.h index 02e9549b3c..cc90bb41c9 100644 --- a/distributeddatamgr/relational_store/include/oh_cursor.h +++ b/distributeddatamgr/relational_store/include/oh_cursor.h @@ -40,7 +40,7 @@ #include #include #include -#include "data_asset.h" +#include "database/data/data_asset.h" #ifdef __cplusplus extern "C" { #endif diff --git a/distributeddatamgr/relational_store/include/oh_predicates.h b/distributeddatamgr/relational_store/include/oh_predicates.h index 28808e30ba..751e5906cc 100644 --- a/distributeddatamgr/relational_store/include/oh_predicates.h +++ b/distributeddatamgr/relational_store/include/oh_predicates.h @@ -39,7 +39,7 @@ #include #include -#include "oh_value_object.h" +#include "database/rdb/oh_value_object.h" #ifdef __cplusplus extern "C" { diff --git a/distributeddatamgr/relational_store/include/oh_values_bucket.h b/distributeddatamgr/relational_store/include/oh_values_bucket.h index 66a923e260..df07df9efd 100644 --- a/distributeddatamgr/relational_store/include/oh_values_bucket.h +++ b/distributeddatamgr/relational_store/include/oh_values_bucket.h @@ -38,7 +38,7 @@ */ #include -#include "data_asset.h" +#include "database/data/data_asset.h" #ifdef __cplusplus extern "C" { #endif diff --git a/distributeddatamgr/relational_store/include/relational_store.h b/distributeddatamgr/relational_store/include/relational_store.h index f32c252d81..3a1f477179 100644 --- a/distributeddatamgr/relational_store/include/relational_store.h +++ b/distributeddatamgr/relational_store/include/relational_store.h @@ -37,10 +37,10 @@ * @since 10 */ -#include "oh_cursor.h" -#include "oh_predicates.h" -#include "oh_value_object.h" -#include "oh_values_bucket.h" +#include "database/rdb/oh_cursor.h" +#include "database/rdb/oh_predicates.h" +#include "database/rdb/oh_value_object.h" +#include "database/rdb/oh_values_bucket.h" #ifdef __cplusplus extern "C" { -- Gitee