Skip to content
Snippets Groups Projects
Commit 1017ddd0 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix for java timestamp type from teunis@sigil.computersupportcentre.com

parent 6cfe951a
Branches
Tags
No related merge requests found
...@@ -80,6 +80,8 @@ public class Field ...@@ -80,6 +80,8 @@ public class Field
sql_type = Types.TIME; sql_type = Types.TIME;
else if (type_name.equals("abstime")) else if (type_name.equals("abstime"))
sql_type = Types.TIMESTAMP; sql_type = Types.TIMESTAMP;
else if (type_name.equals("timestamp"))
sql_type = Types.TIMESTAMP;
else else
sql_type = Types.OTHER; sql_type = Types.OTHER;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment