From: | "Xavier Poinsard" <xpoinsard(at)free(dot)fr> |
---|---|
To: | Kris Jurka <books(at)ejurka(dot)com> |
Cc: | pgsql-jdbc <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | Re: Patch to reduce the number of messages to translate |
Date: | 2004-12-22 11:34:54 |
Message-ID: | 41C95BDE.2030108@free.fr |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-jdbc |
Just discovered a small typo :
Index: TimestampUtils.java
===================================================================
RCS file:
/usr/local/cvsroot/pgjdbc/pgjdbc/org/postgresql/jdbc2/TimestampUtils.java,v
retrieving revision 1.9
diff -u -r1.9 TimestampUtils.java
--- TimestampUtils.java 22 Dec 2004 09:23:57 -0000 1.9
+++ TimestampUtils.java 22 Dec 2004 11:32:35 -0000
@@ -158,7 +158,7 @@
}
}
} catch (NumberFormatException nfe) {
- throw new PSQLException(GT.tr("Bad value for type {0} :
{1}}", new Object[]{type,s}), PSQLState.BAD_DATETIME_FORMAT, nfe);
+ throw new PSQLException(GT.tr("Bad value for type {0} :
{1}", new Object[]{type,s}), PSQLState.BAD_DATETIME_FORMAT, nfe);
}
return nanos;
From | Date | Subject | |
---|---|---|---|
Next Message | Christine Warren | 2004-12-22 16:14:54 | Missing declarations/jdbc error |
Previous Message | Kris Jurka | 2004-12-22 11:31:49 | Re: [BUGS] BUG #1347: Bulk Import stopps after a while ( |