Skip to content

Commit 5b5985e

Browse files
author
Michael Meskes
committed
Applied patch by Zoltan to fix copy&paste bug in ecpg's sqlda handling.
1 parent 4de82f7 commit 5b5985e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/ecpg/ecpglib/sqlda.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ sqlda_common_total_size(const PGresult *res, int row, enum COMPAT_MODE compat, l
124124
}
125125
break;
126126
case ECPGt_date:
127-
ecpg_sqlda_align_add_size(offset, sizeof(int), sizeof(date), &offset, &next_offset);
127+
ecpg_sqlda_align_add_size(offset, sizeof(date), sizeof(date), &offset, &next_offset);
128128
break;
129129
case ECPGt_timestamp:
130130
ecpg_sqlda_align_add_size(offset, sizeof(int), sizeof(timestamp), &offset, &next_offset);

0 commit comments

Comments
 (0)