Searched refs:oldSchema (Results 1 – 5 of 5) sorted by relevance
112 static bool CompareSchemaObject(const SchemaObject &newSchema, const SchemaObject &oldSchema);
915 bool KvDBManager::CompareSchemaObject(const SchemaObject &newSchema, const SchemaObject &oldSchema) in CompareSchemaObject() argument917 if (!newSchema.IsSchemaValid() && !oldSchema.IsSchemaValid()) { // LCOV_EXCL_BR_LINE in CompareSchemaObject()920 if (!newSchema.IsSchemaValid() || !oldSchema.IsSchemaValid()) { // LCOV_EXCL_BR_LINE in CompareSchemaObject()923 return (oldSchema.CompareAgainstSchemaObject(newSchema) == -E_SCHEMA_EQUAL_EXACTLY); in CompareSchemaObject()
163 … static bool CheckCloudSchemaFields(const TableSchema &tableSchema, const TableSchema &oldSchema);
1034 …dStorageUtils::CheckCloudSchemaFields(const TableSchema &tableSchema, const TableSchema &oldSchema) in CheckCloudSchemaFields() argument1036 if (tableSchema.name != oldSchema.name) { in CheckCloudSchemaFields()1039 for (const auto &oldField : oldSchema.fields) { in CheckCloudSchemaFields()
1588 for (const auto &oldSchema : cloudSchema->tables) { in CheckCloudSchema() local1589 if (!CloudStorageUtils::CheckCloudSchemaFields(tableSchema, oldSchema)) { in CheckCloudSchema()