*** empty log message ***

This commit is contained in:
Michael Meskes 2000-05-15 09:36:06 +00:00
parent 1bea3c3c46
commit ce2a9f372d
4 changed files with 17 additions and 4 deletions

View File

@ -913,3 +913,10 @@ Sat Apr 8 13:10:12 CEST 2000
- Synced keyword.c.
- Set library version to 3.1.0.
- Set ecpg version to 2.7.0.
Mon May 15 10:51:31 CEST 2000
- Added patch by SAKAIDA Masaaki <sakaida@psn.co.jp> to fix segfault.
- Set ecpg version to 2.7.1.

View File

@ -16,13 +16,13 @@ get_data(PGresult *results, int act_tuple, int act_field, int lineno,
ECPGlog("get_data line %d: RESULT: %s\n", lineno, pval ? pval : "");
/* Now the pval is a pointer to the value. */
/* let's check is it really is an array if it should be */
/* pval is a pointer to the value */
/* let's check is it really is an array if it should be one */
if (isarray)
{
if (*pval != '{')
{
ECPGlog("get_data data entry does not look like an array in line %d\n", lineno);
ECPGlog("get_data: data entry does not look like an array in line %d\n", lineno);
ECPGraise(lineno, ECPG_DATA_NOT_ARRAY, NULL);
return (false);
}

View File

@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
MAJOR_VERSION=2
MINOR_VERSION=7
PATCHLEVEL=0
PATCHLEVEL=1
CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION) \
-DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL) \

View File

@ -198,6 +198,12 @@ static void ECPGdump_a_struct(FILE *o, const char *name, const char *ind_name, l
void
ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype * typ, const char *ind_name, struct ECPGtype * ind_typ, const char *prefix, const char *ind_prefix)
{
if (ind_typ == NULL)
{
ind_typ = &ecpg_no_indicator;
ind_name = "no_indicator";
}
switch (typ->typ)
{
case ECPGt_array: