Commit 1017ddd0 authored by Bruce Momjian's avatar Bruce Momjian

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

parent 6cfe951a
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment