add another column type name normalization 'double precision' -> 'double'
Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
parent
05bf44a41b
commit
167309c5d8
|
@ -239,6 +239,10 @@ class ColumnDefinitions {
|
|||
return "blob";
|
||||
case "interval second":
|
||||
return "interval";
|
||||
case "double precision":
|
||||
return "double";
|
||||
// todo: normalize DECIMAL to NUMERIC?
|
||||
// normalize REAL to FLOAT?
|
||||
default:
|
||||
return lowercaseTypeName;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue