add another column type name normalization 'double precision' -> 'double'

Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
Gavin King 2024-05-20 14:28:31 +02:00
parent 05bf44a41b
commit 167309c5d8
1 changed files with 4 additions and 0 deletions

View File

@ -239,6 +239,10 @@ class ColumnDefinitions {
return "blob"; return "blob";
case "interval second": case "interval second":
return "interval"; return "interval";
case "double precision":
return "double";
// todo: normalize DECIMAL to NUMERIC?
// normalize REAL to FLOAT?
default: default:
return lowercaseTypeName; return lowercaseTypeName;
} }