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
7e02371e
Commit
7e02371e
authored
Oct 22, 2000
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed mixing of two enum datatypes.
parent
aa23c705
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-0
src/interfaces/ecpg/lib/descriptor.c
src/interfaces/ecpg/lib/descriptor.c
+2
-2
No files found.
src/interfaces/ecpg/ChangeLog
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.
src/interfaces/ecpg/lib/descriptor.c
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
)
{
...
...
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