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
7e02371e
Commit
7e02371e
authored
24 years ago
by
Michael Meskes
Browse files
Options
Downloads
Patches
Plain Diff
Fixed mixing of two enum datatypes.
parent
aa23c705
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/interfaces/ecpg/ChangeLog
+5
-0
5 additions, 0 deletions
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/lib/descriptor.c
+2
-2
2 additions, 2 deletions
src/interfaces/ecpg/lib/descriptor.c
with
7 additions
and
2 deletions
src/interfaces/ecpg/ChangeLog
+
5
−
0
View file @
7e02371e
...
...
@@ -977,5 +977,10 @@ Tue Oct 17 08:09:16 CEST 2000
Tue Oct 17 17:36:30 CEST 2000
- Fixed some bugs in C language parsing.
Sun Oct 22 15:35:53 CEST 2000
- Fixed typos in descriptor.c.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/lib/descriptor.c
+
2
−
2
View file @
7e02371e
...
...
@@ -59,7 +59,7 @@ ECPGget_desc_header(int lineno, char *desc_name, int *count)
}
static
bool
get_int_item
(
int
lineno
,
void
*
var
,
enum
ECPG
d
type
vartype
,
int
value
)
get_int_item
(
int
lineno
,
void
*
var
,
enum
ECPG
t
type
vartype
,
int
value
)
{
switch
(
vartype
)
{
...
...
@@ -102,7 +102,7 @@ get_int_item(int lineno, void *var, enum ECPGdtype vartype, int value)
}
static
bool
get_char_item
(
int
lineno
,
void
*
var
,
enum
ECPG
d
type
vartype
,
char
*
value
,
int
varcharsize
)
get_char_item
(
int
lineno
,
void
*
var
,
enum
ECPG
t
type
vartype
,
char
*
value
,
int
varcharsize
)
{
switch
(
vartype
)
{
...
...
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