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 713e9f1 commit 09db974Copy full SHA for 09db974
src/NHibernate/Dialect/Schema/PostgreSQLMetadata.cs
@@ -138,10 +138,10 @@ public PostgreSQLColumnMetadata(DataRow rs)
138
this.SetNumericalPrecision(rs["NUMERIC_PRECISION"]);
139
140
Nullable = Convert.ToString(rs["IS_NULLABLE"]);
141
- TypeName = Normalize(Convert.ToString(rs["DATA_TYPE"]));
+ TypeName = NormalizeTypeNames(Convert.ToString(rs["DATA_TYPE"]));
142
}
143
144
- private static string Normalize(string typeName)
+ private static string NormalizeTypeNames(string typeName)
145
{
146
switch (typeName)
147
0 commit comments