Commit a3242fb4 authored by Michael Meskes's avatar Michael Meskes

Lost some changes yet again

parent c9970d59
...@@ -2142,5 +2142,7 @@ Tu 5. Sep 11:49:08 CEST 2006 ...@@ -2142,5 +2142,7 @@ Tu 5. Sep 11:49:08 CEST 2006
- Synced parser. - Synced parser.
- Fixed ecpglib trying to read one character after end-of-string. - Fixed ecpglib trying to read one character after end-of-string.
- Fixed port number setting in regression suite. - 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 library version to 5.2.
- Set ecpg version to 4.2.1. - Set ecpg version to 4.2.1.
/* $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 "postgres_fe.h"
#include <time.h> #include <time.h>
...@@ -836,10 +836,10 @@ PGTYPESinterval_to_asc(interval * span) ...@@ -836,10 +836,10 @@ PGTYPESinterval_to_asc(interval * span)
} }
int int
PGTYPESinterval_copy(interval * intvlsrc, interval * intrcldest) PGTYPESinterval_copy(interval * intvlsrc, interval * intvldest)
{ {
intrcldest->time = intvlsrc->time; intvldest->time = intvlsrc->time;
intrcldest->month = intvlsrc->month; intvldest->month = intvlsrc->month;
return 0; return 0;
} }
#! /bin/sh #! /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` me=`basename $0`
...@@ -711,7 +711,7 @@ for i in \ ...@@ -711,7 +711,7 @@ for i in \
connect/*.pgc \ connect/*.pgc \
compat_informix/*.pgc \ compat_informix/*.pgc \
complex/*.pgc \ complex/*.pgc \
errors/*.pgc \ preproc/*.pgc \
pgtypeslib/*.pgc \ pgtypeslib/*.pgc \
sql/*.pgc \ sql/*.pgc \
thread/*.pgc; do thread/*.pgc; do
......
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