mirror of
https://github.com/postgres/postgres.git
synced 2026-02-28 04:10:35 -05:00
Fix for java timestamp type from teunis@sigil.computersupportcentre.com
This commit is contained in:
parent
6cfe951a42
commit
1017ddd003
1 changed files with 2 additions and 0 deletions
|
|
@ -80,6 +80,8 @@ public class Field
|
|||
sql_type = Types.TIME;
|
||||
else if (type_name.equals("abstime"))
|
||||
sql_type = Types.TIMESTAMP;
|
||||
else if (type_name.equals("timestamp"))
|
||||
sql_type = Types.TIMESTAMP;
|
||||
else
|
||||
sql_type = Types.OTHER;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue