Skip to content

Commit 09db974

Browse files
committed
Minor rename
1 parent 713e9f1 commit 09db974

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NHibernate/Dialect/Schema/PostgreSQLMetadata.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ public PostgreSQLColumnMetadata(DataRow rs)
138138
this.SetNumericalPrecision(rs["NUMERIC_PRECISION"]);
139139

140140
Nullable = Convert.ToString(rs["IS_NULLABLE"]);
141-
TypeName = Normalize(Convert.ToString(rs["DATA_TYPE"]));
141+
TypeName = NormalizeTypeNames(Convert.ToString(rs["DATA_TYPE"]));
142142
}
143143

144-
private static string Normalize(string typeName)
144+
private static string NormalizeTypeNames(string typeName)
145145
{
146146
switch (typeName)
147147
{

0 commit comments

Comments
 (0)