Searched refs:joinTypes (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/ |
H A D | rdb_predicates_join_test.cpp | 203 std::vector<std::string> joinTypes; variable 204 joinTypes.push_back("CROSS JOIN"); 261 std::vector<std::string> joinTypes; variable 262 joinTypes.push_back("INNER JOIN"); 317 std::vector<std::string> joinTypes; variable 318 joinTypes.push_back("LEFT OUTER JOIN"); 368 std::vector<std::string> joinTypes; variable 391 std::vector<std::string> joinTypes; variable 413 std::vector<std::string> joinTypes; variable 433 std::vector<std::string> joinTypes; variable [all …]
|
H A D | rdb_predicates_join_b_test.cpp | 259 std::vector<std::string> joinTypes; variable 260 joinTypes.push_back("CROSS JOIN"); 331 std::vector<std::string> joinTypes; variable 332 joinTypes.push_back("INNER JOIN"); 380 std::vector<std::string> joinTypes; variable 381 joinTypes.push_back("INNER JOIN"); 428 std::vector<std::string> joinTypes; variable 429 joinTypes.push_back("INNER JOIN"); 430 joinTypes.push_back("INNER JOIN"); 431 joinTypes.push_back("INNER JOIN"); [all …]
|
H A D | rdb_predicates_test.cpp | 1372 std::vector<std::string> joinTypes; variable 1373 joinTypes.push_back("INNER JOIN"); 1374 predicates1.SetJoinTypes(joinTypes); 1383 EXPECT_EQ(joinTypes, predicates1.GetJoinTypes());
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | abs_rdb_predicates.cpp | 56 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()
|
H A D | rdb_predicates.cpp | 68 joinTypes.push_back(GetGrammar(join)); in Join() 126 builder = builder + joinTypes[i] + " " + joinTableNames[i]; in ProcessJoins()
|
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | abs_rdb_predicates.h | 280 API_EXPORT virtual void SetJoinTypes(const std::vector<std::string> &joinTypes); 322 std::vector<std::string> joinTypes;
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/src/ |
H A D | napi_rdb_predicates.cpp | 814 auto joinTypes = nativePredicates->GetJoinTypes(); in GetJoinTypes() local 815 return JSUtils::Convert2JSValue(env, joinTypes); in GetJoinTypes() 865 std::vector<std::string> joinTypes; in SetJoinTypes() local 866 …RdbPredicatesProxy *predicatesProxy = ParseFieldArrayByName(env, info, thiz, joinTypes, "joinTypes… in SetJoinTypes() 869 predicatesProxy->predicates_->SetJoinTypes(joinTypes); in SetJoinTypes()
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/ |
H A D | napi_rdb_predicates.cpp | 779 auto joinTypes = predicatesProxy->GetInstance()->GetJoinTypes(); in GetJoinTypes() local 780 return JSUtils::Convert2JSValue(env, joinTypes); in GetJoinTypes() 824 std::vector<std::string> joinTypes; in SetJoinTypes() local 825 auto predicatesProxy = ParseFieldArrayByName(env, info, thiz, joinTypes, "joinTypes", "string"); in SetJoinTypes() 827 predicatesProxy->GetInstance()->SetJoinTypes(joinTypes); in SetJoinTypes()
|