Lost some changes yet again

This commit is contained in:
Michael Meskes 2006-09-05 12:17:09 +00:00
parent c9970d5948
commit a3242fb42c
3 changed files with 8 additions and 6 deletions

View File

@ -2142,5 +2142,7 @@ Tu 5. Sep 11:49:08 CEST 2006
- Synced parser.
- Fixed ecpglib trying to read one character after end-of-string.
- Fixed port number setting in regression suite.
- Added some interval checks to regression suite.
- Started to cleanup complex tests.
- Set ecpg library version to 5.2.
- Set ecpg version to 4.2.1.

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.33 2006/09/04 01:26:28 tgl Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.34 2006/09/05 12:17:09 meskes Exp $ */
#include "postgres_fe.h"
#include <time.h>
@ -836,10 +836,10 @@ PGTYPESinterval_to_asc(interval * span)
}
int
PGTYPESinterval_copy(interval * intvlsrc, interval * intrcldest)
PGTYPESinterval_copy(interval * intvlsrc, interval * intvldest)
{
intrcldest->time = intvlsrc->time;
intrcldest->month = intvlsrc->month;
intvldest->time = intvlsrc->time;
intvldest->month = intvlsrc->month;
return 0;
}

View File

@ -1,5 +1,5 @@
#! /bin/sh
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/pg_regress.sh,v 1.11 2006/09/05 10:00:53 meskes Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/pg_regress.sh,v 1.12 2006/09/05 12:17:09 meskes Exp $
me=`basename $0`
@ -711,7 +711,7 @@ for i in \
connect/*.pgc \
compat_informix/*.pgc \
complex/*.pgc \
errors/*.pgc \
preproc/*.pgc \
pgtypeslib/*.pgc \
sql/*.pgc \
thread/*.pgc; do