Removed one output because integer/double usage differ

This commit is contained in:
Michael Meskes 2006-09-07 08:15:58 +00:00
parent ca6a4ff82b
commit 1d1868d97e

View file

@ -95,7 +95,8 @@ main(void)
sprintf(t, "%s %s", dates[i], times[j]);
ts1 = PGTYPEStimestamp_from_asc(t, NULL);
text = PGTYPEStimestamp_to_asc(ts1);
printf("TS[%d,%d]: %s\n",
if (i != 19 || j != 3) /* timestamp as integer or double differ for this case */
printf("TS[%d,%d]: %s\n",
i, j, errno ? "-" : text);
free(text);
}