Home
last modified time | relevance | path

Searched refs:E_RELATIONAL_TABLE_EQUAL (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Dtable_info.cpp471 …return (fieldCompareResult == -E_RELATIONAL_TABLE_EQUAL) ? indexCompareResult : fieldCompareResult; in CompareWithTable()
488 return -E_RELATIONAL_TABLE_EQUAL; in CompareWithPrimaryKey()
495 int errCode = -E_RELATIONAL_TABLE_EQUAL; in CompareWithTableFields()
544 return -E_RELATIONAL_TABLE_EQUAL; in CompareCompositeFields()
556 if (CompareCompositeFields(*itLocal, *itInTable) != -E_RELATIONAL_TABLE_EQUAL) { in CompareWithTableUnique()
562 return -E_RELATIONAL_TABLE_EQUAL; in CompareWithTableUnique()
578 …n (itLocal == indexDefines_.end() && itInTable == inTableIndex.end()) ? -E_RELATIONAL_TABLE_EQUAL : in CompareWithTableIndex()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_relational_schema_object_test.cpp597 EXPECT_EQ(table1.CompareWithTable(table2), -E_RELATIONAL_TABLE_EQUAL);
719 EXPECT_EQ(table.CompareWithTable(inTable3), -E_RELATIONAL_TABLE_EQUAL);
738 …chema.GetTable("StudENT").CompareWithTable(schema.GetTable("STUDENT")), -E_RELATIONAL_TABLE_EQUAL);
768 EXPECT_EQ(table1.CompareWithTable(table2), -E_RELATIONAL_TABLE_EQUAL);
800 -E_RELATIONAL_TABLE_EQUAL);
824 -E_RELATIONAL_TABLE_EQUAL);
836 -E_RELATIONAL_TABLE_EQUAL);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Ddb_errno.h168 constexpr int E_RELATIONAL_TABLE_EQUAL = (E_BASE + 186); // In table is same variable
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_single_ver_relational_storage_executor.cpp320 } else if (errCode == -E_RELATIONAL_TABLE_EQUAL) { in UpgradeDistributedTable()
1432 if (errCode != -E_RELATIONAL_TABLE_EQUAL && errCode != -E_RELATIONAL_TABLE_COMPATIBLE) { in CheckQueryObjectLegal()