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";
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue