mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
Fixed mixing of two enum datatypes.
This commit is contained in:
parent
aa23c70522
commit
7e02371e0f
@ -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.
|
||||
|
@ -59,7 +59,7 @@ ECPGget_desc_header(int lineno, char *desc_name, int *count)
|
||||
}
|
||||
|
||||
static bool
|
||||
get_int_item(int lineno, void *var, enum ECPGdtype vartype, int value)
|
||||
get_int_item(int lineno, void *var, enum ECPGttype 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 ECPGdtype vartype, char *value, int varcharsize)
|
||||
get_char_item(int lineno, void *var, enum ECPGttype vartype, char *value, int varcharsize)
|
||||
{
|
||||
switch (vartype)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user