Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a3242fb4
Commit
a3242fb4
authored
Sep 05, 2006
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lost some changes yet again
parent
c9970d59
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+2
-0
src/interfaces/ecpg/pgtypeslib/interval.c
src/interfaces/ecpg/pgtypeslib/interval.c
+4
-4
src/interfaces/ecpg/test/pg_regress.sh
src/interfaces/ecpg/test/pg_regress.sh
+2
-2
No files found.
src/interfaces/ecpg/ChangeLog
View file @
a3242fb4
...
...
@@ -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.
src/interfaces/ecpg/pgtypeslib/interval.c
View file @
a3242fb4
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.3
3 2006/09/04 01:26:28 tgl
Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.3
4 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
*
int
rc
ldest
)
PGTYPESinterval_copy
(
interval
*
intvlsrc
,
interval
*
int
v
ldest
)
{
int
rc
ldest
->
time
=
intvlsrc
->
time
;
int
rc
ldest
->
month
=
intvlsrc
->
month
;
int
v
ldest
->
time
=
intvlsrc
->
time
;
int
v
ldest
->
month
=
intvlsrc
->
month
;
return
0
;
}
src/interfaces/ecpg/test/pg_regress.sh
View file @
a3242fb4
#! /bin/sh
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/pg_regress.sh,v 1.1
1 2006/09/05 10:00:53
meskes Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/pg_regress.sh,v 1.1
2 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment