/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/cloud/ |
H A D | schema_mgr.cpp | 34 return -E_SCHEMA_MISMATCH; in ChkSchema() 40 return -E_SCHEMA_MISMATCH; in ChkSchema() 52 return -E_SCHEMA_MISMATCH; in ChkSchema() 66 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() 70 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() 75 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() 79 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() 83 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() 89 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() 96 return -E_SCHEMA_MISMATCH; in CompareFieldSchema() [all …]
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/ |
H A D | distributeddb_cloud_schema_mgr_test.cpp | 286 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_1, localSchema), -E_SCHEMA_MISMATCH); 287 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_2, localSchema), -E_SCHEMA_MISMATCH); 288 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_3, localSchema), -E_SCHEMA_MISMATCH); 342 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_2, localSchema), -E_SCHEMA_MISMATCH); 369 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_2, localSchema), -E_SCHEMA_MISMATCH); 486 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_3, localSchema), -E_SCHEMA_MISMATCH); 488 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_2, localSchema), -E_SCHEMA_MISMATCH); 490 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_4, localSchema), -E_SCHEMA_MISMATCH); 496 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_1, localSchema), -E_SCHEMA_MISMATCH); 510 EXPECT_EQ(g_schemaMgr->ChkSchema(TABLE_NAME_1, localSchema), -E_SCHEMA_MISMATCH); [all …]
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_storage_engine.cpp | 121 return -E_SCHEMA_MISMATCH; in CheckEngineOption() 128 return -E_SCHEMA_MISMATCH; in CheckEngineOption()
|
H A D | sqlite_cloud_kv_store.cpp | 75 return -E_SCHEMA_MISMATCH; in GetCloudTableSchema()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/upgrader/ |
H A D | single_ver_schema_database_upgrader.cpp | 59 return -E_SCHEMA_MISMATCH; in ExecuteUpgradeSchema()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/ |
H A D | distributeddb_ability_sync_test.cpp | 467 EXPECT_TRUE(context->GetTaskErrCode() != -E_SCHEMA_MISMATCH); 485 EXPECT_FALSE(context->GetTaskErrCode() != -E_SCHEMA_MISMATCH); 539 EXPECT_TRUE(context->GetTaskErrCode() != -E_SCHEMA_MISMATCH);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/ |
H A D | kv_store_errno.cpp | 39 { -E_SCHEMA_MISMATCH, SCHEMA_MISMATCH },
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/ |
H A D | ability_sync.cpp | 433 (static_cast<SingleVerSyncTaskContext *>(context))->SetTaskErrCode(-E_SCHEMA_MISMATCH); in AckRecv() 435 return -E_SCHEMA_MISMATCH; in AckRecv() 463 (static_cast<SingleVerSyncTaskContext *>(context))->SetTaskErrCode(-E_SCHEMA_MISMATCH); in RequestRecv() 1333 singleVerContext->SetTaskErrCode(-E_SCHEMA_MISMATCH); in AckRecvWithHighVersion() 1335 return -E_SCHEMA_MISMATCH; in AckRecvWithHighVersion()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | distributeddb_interfaces_device_identifier_test.cpp | 664 EXPECT_EQ(storageEngine->CheckEngineOption(prop), -E_SCHEMA_MISMATCH); 674 EXPECT_EQ(storageEngine->CheckEngineOption(prop), -E_SCHEMA_MISMATCH);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/ |
H A D | sync_able_kvdb.cpp | 576 return -E_SCHEMA_MISMATCH; in CheckSyncOption() 585 return -E_SCHEMA_MISMATCH; in CheckSyncOption()
|
H A D | kvdb_manager.cpp | 939 return -E_SCHEMA_MISMATCH; in CheckSchema() 946 return -E_SCHEMA_MISMATCH; in CheckSchema()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/ |
H A D | table_info.cpp | 761 return -E_SCHEMA_MISMATCH; in CheckTrackerTable() 770 return -E_SCHEMA_MISMATCH; in CheckTrackerTable()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/ |
H A D | db_errno.h | 96 constexpr int E_SCHEMA_MISMATCH = (E_BASE + 75); // the schema is mismatch variable
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/ |
H A D | relational_sync_able_storage.cpp | 1221 if (errCode == -E_SCHEMA_MISMATCH) { in ChkSchema() 1227 return -E_SCHEMA_MISMATCH; in ChkSchema() 1680 res.second = -E_SCHEMA_MISMATCH; in GetSourceTableName() 1705 res.second = -E_SCHEMA_MISMATCH; in GetSharedTargetTableName()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/ |
H A D | sqlite_single_ver_relational_storage_executor.cpp | 291 return -E_SCHEMA_MISMATCH; in CompareSchemaTableColumns() 319 return -E_SCHEMA_MISMATCH; in UpgradeDistributedTable()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/ |
H A D | single_ver_data_sync.cpp | 1567 (void)SendDataAck(context, message, -E_SCHEMA_MISMATCH, 0); in CheckSchemaStrategy() 1568 return -E_SCHEMA_MISMATCH; in CheckSchemaStrategy()
|
H A D | single_ver_sync_state_machine.cpp | 859 { -E_SCHEMA_MISMATCH, SyncOperation::OP_SCHEMA_INCOMPATIBLE }, in GetSyncOperationStatus()
|