We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2a870 commit 6cf057bCopy full SHA for 6cf057b
src/NHibernate/SqlTypes/SqlType.cs
@@ -143,13 +143,13 @@ public bool Equals(SqlType rhsSqlType)
143
if (ScaleDefined != rhsSqlType.ScaleDefined)
144
return false;
145
146
- if (LengthDefined && Length != rhsSqlType.Length)
+ if (Length != rhsSqlType.Length)
147
148
149
- if (PrecisionDefined && Precision != rhsSqlType.Precision)
+ if (Precision != rhsSqlType.Precision)
150
151
152
- if (ScaleDefined && Scale != rhsSqlType.Scale)
+ if (Scale != rhsSqlType.Scale)
153
154
155
return true;
0 commit comments