Home
last modified time | relevance | path

Searched refs:joinTypes (Results 1 - 8 of 8) sorted by relevance

/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_predicates_join_test.cpp203 std::vector<std::string> joinTypes; in HWTEST_F() local
204 joinTypes.push_back("CROSS JOIN"); in HWTEST_F()
205 EXPECT_EQ(joinTypes, predicates.GetJoinTypes()); in HWTEST_F()
261 std::vector<std::string> joinTypes; in HWTEST_F() local
262 joinTypes.push_back("INNER JOIN"); in HWTEST_F()
263 EXPECT_EQ(joinTypes, predicates.GetJoinTypes()); in HWTEST_F()
317 std::vector<std::string> joinTypes; in HWTEST_F() local
318 joinTypes.push_back("LEFT OUTER JOIN"); in HWTEST_F()
319 EXPECT_EQ(joinTypes, predicates.GetJoinTypes()); in HWTEST_F()
368 std::vector<std::string> joinTypes; in HWTEST_F() local
391 std::vector<std::string> joinTypes; HWTEST_F() local
413 std::vector<std::string> joinTypes; HWTEST_F() local
433 std::vector<std::string> joinTypes; HWTEST_F() local
452 std::vector<std::string> joinTypes; HWTEST_F() local
[all...]
H A Drdb_predicates_join_b_test.cpp259 std::vector<std::string> joinTypes; in HWTEST_F() local
260 joinTypes.push_back("CROSS JOIN"); in HWTEST_F()
262 EXPECT_EQ(joinTypes, predicates.GetJoinTypes()); in HWTEST_F()
331 std::vector<std::string> joinTypes; in HWTEST_F() local
332 joinTypes.push_back("INNER JOIN"); in HWTEST_F()
333 EXPECT_EQ(joinTypes, predicates.GetJoinTypes()); in HWTEST_F()
380 std::vector<std::string> joinTypes; in HWTEST_F() local
381 joinTypes.push_back("INNER JOIN"); in HWTEST_F()
382 EXPECT_EQ(joinTypes, predicates.GetJoinTypes()); in HWTEST_F()
428 std::vector<std::string> joinTypes; in HWTEST_F() local
491 std::vector<std::string> joinTypes; HWTEST_F() local
[all...]
H A Drdb_predicates_test.cpp1372 std::vector<std::string> joinTypes; in HWTEST_F() local
1373 joinTypes.push_back("INNER JOIN"); in HWTEST_F()
1374 predicates1.SetJoinTypes(joinTypes); in HWTEST_F()
1383 EXPECT_EQ(joinTypes, predicates1.GetJoinTypes()); in HWTEST_F()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_predicates.cpp68 joinTypes.push_back(GetGrammar(join)); in Join()
126 builder = builder + joinTypes[i] + " " + joinTableNames[i]; in ProcessJoins()
H A Dabs_rdb_predicates.cpp56 joinTypes.clear(); in InitialParam()
64 return joinTypes; in GetJoinTypes()
71 void AbsRdbPredicates::SetJoinTypes(const std::vector<std::string> &joinTypes) in SetJoinTypes() argument
73 this->joinTypes = joinTypes; in SetJoinTypes()
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Dabs_rdb_predicates.h280 API_EXPORT virtual void SetJoinTypes(const std::vector<std::string> &joinTypes);
322 std::vector<std::string> joinTypes; member in OHOS::NativeRdb::AbsRdbPredicates
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
H A Dnapi_rdb_predicates.cpp74 DECLARE_NAPI_GETTER_SETTER("joinTypes", GetJoinTypes, SetJoinTypes), in Init()
787 auto joinTypes = predicatesProxy->GetInstance()->GetJoinTypes(); in GetJoinTypes() local
788 return JSUtils::Convert2JSValue(env, joinTypes); in GetJoinTypes()
832 std::vector<std::string> joinTypes; in SetJoinTypes() local
833 auto predicatesProxy = ParseFieldArrayByName(env, info, thiz, joinTypes, "joinTypes", "string"); in SetJoinTypes()
835 predicatesProxy->GetInstance()->SetJoinTypes(joinTypes); in SetJoinTypes()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/src/
H A Dnapi_rdb_predicates.cpp81 DECLARE_NAPI_GETTER_SETTER("joinTypes", GetJoinTypes, SetJoinTypes), in Init()
821 auto joinTypes = nativePredicates->GetJoinTypes(); in GetJoinTypes() local
822 return JSUtils::Convert2JSValue(env, joinTypes); in GetJoinTypes()
872 std::vector<std::string> joinTypes; in SetJoinTypes() local
873 RdbPredicatesProxy *predicatesProxy = ParseFieldArrayByName(env, info, thiz, joinTypes, "joinTypes", "string"); in SetJoinTypes()
876 predicatesProxy->predicates_->SetJoinTypes(joinTypes); in SetJoinTypes()

Completed in 10 milliseconds