mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
Removed timezone in ResultSet.getTimestamp()
This commit is contained in:
@ -437,7 +437,7 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu
|
||||
if(s==null)
|
||||
return null;
|
||||
|
||||
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:sszzz");
|
||||
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||
|
||||
try {
|
||||
return new Timestamp(df.parse(s).getTime());
|
||||
|
Reference in New Issue
Block a user