Home
last modified time | relevance | path

Searched refs:inField (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Dtable_info.cpp173 int FieldInfo::CompareWithField(const FieldInfo &inField, bool isLite) const in CompareWithField() argument
175 …if (!DBCommon::CaseInsensitiveCompare(fieldName_, inField.GetFieldName()) || isNotNull_ != inField in CompareWithField()
179 if (storageType_ != inField.GetStorageType()) { in CompareWithField()
183 if (dataType_ != inField.GetDataType()) { in CompareWithField()
187 if (hasDefaultValue_ && inField.HasDefaultValue()) { in CompareWithField()
191 DBCommon::CaseInsensitiveCompare(inField.GetDefaultValue(), "NULL")) || in CompareWithField()
192 (defaultValue_ == inField.GetDefaultValue()); in CompareWithField()
194 return hasDefaultValue_ == inField.HasDefaultValue(); in CompareWithField()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/relational/
H A Dtable_info.h54 int CompareWithField(const FieldInfo &inField, bool isLite = false) const;