Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
86a83319
Commit
86a83319
authored
21 years ago
by
Michael Meskes
Browse files
Options
Downloads
Patches
Plain Diff
Some minor changes for new version numbering.
parent
7ea9c948
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/interfaces/ecpg/ChangeLog
+7
-2
7 additions, 2 deletions
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ecpglib/Makefile
+2
-2
2 additions, 2 deletions
src/interfaces/ecpg/ecpglib/Makefile
src/interfaces/ecpg/include/ecpgtype.h
+10
-10
10 additions, 10 deletions
src/interfaces/ecpg/include/ecpgtype.h
with
19 additions
and
14 deletions
src/interfaces/ecpg/ChangeLog
+
7
−
2
View file @
86a83319
...
...
@@ -1487,8 +1487,13 @@ Fri Jun 13 10:11:12 CEST 2003
- Enable FETCH without INTO.
- Compatibility functions for INFORMIX handling of DECLARE statement.
- Set ecpg version to 2.12.0.
- Set ecpg library to 3.4.2.
Sun Jun 15 11:18:58 CEST 2003
- Applied multi-threading patch by Lee Kindess <lkindness@csl.co.uk>
- Changed order of types in enum to make working with these easier.
- Set ecpg version to 3.0.0
- Set ecpg library to 4.0.0
- Set pgtypes library to 1.0.0
- Set compat library to 1.0.0
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/ecpglib/Makefile
+
2
−
2
View file @
86a83319
...
...
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.
4
2003/06/15
04:07:58 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.
5
2003/06/15
11:10:09 meskes
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.global
NAME
=
ecpg
SO_MAJOR_VERSION
=
4
SO_MINOR_VERSION
=
1
.1
SO_MINOR_VERSION
=
0
.1
override
CPPFLAGS
:=
-I
$(
top_srcdir
)
/src/interfaces/ecpg/include
-I
$(
libpq_srcdir
)
$(
CPPFLAGS
)
$(
THREAD_CFLAGS
)
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/include/ecpgtype.h
+
10
−
10
View file @
86a83319
...
...
@@ -40,22 +40,22 @@ enum ECPGttype
{
ECPGt_char
=
1
,
ECPGt_unsigned_char
,
ECPGt_short
,
ECPGt_unsigned_short
,
ECPGt_int
,
ECPGt_unsigned_int
,
ECPGt_long
,
ECPGt_unsigned_long
,
ECPGt_long_long
,
ECPGt_unsigned_long_long
,
ECPGt_bool
,
ECPGt_float
,
ECPGt_double
,
ECPGt_varchar
,
ECPGt_varchar2
,
ECPGt_numeric
,
ECPGt_date
,
ECPGt_timestamp
,
ECPGt_interval
,
ECPGt_array
,
ECPGt_struct
,
ECPGt_union
,
ECPGt_descriptor
,
/* sql descriptor, no C variable */
ECPGt_char_variable
,
ECPGt_EOIT
,
/* End of insert types. */
ECPGt_EORT
,
/* End of result types. */
ECPGt_NO_INDICATOR
,
/* no indicator */
ECPGt_long_long
,
ECPGt_unsigned_long_long
,
ECPGt_descriptor
,
/* sql descriptor, no C variable */
ECPGt_numeric
,
ECPGt_date
,
ECPGt_timestamp
,
ECPGt_interval
ECPGt_EOIT
,
/* End of insert types. */
ECPGt_EORT
,
/* End of result types. */
ECPGt_NO_INDICATOR
/* no indicator */
};
/* descriptor items */
...
...
@@ -80,7 +80,7 @@ enum ECPGdtype
ECPGd_cardinality
};
#define IS_SIMPLE_TYPE(type) ((
(
type) >= ECPGt_char && (type) <= ECPGt_
varchar2) || ((type)>=ECPGt_long_long && (type) <= ECPGt_unsigned_long_long) || (type) >= ECPGt_numeric
)
#define IS_SIMPLE_TYPE(type) ((type) >= ECPGt_char && (type) <= ECPGt_
interval
)
#ifdef __cplusplus
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment