diff options
| -rw-r--r-- | pgapi30.c | 2 | ||||
| -rw-r--r-- | version.h | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1727,7 +1727,7 @@ PGAPI_BulkOperations(HSTMT hstmt, SQLSMALLINT operation) SC_set_error(stmt, STMT_INVALID_OPTION_IDENTIFIER, "bookmark isn't specified"); return SQL_ERROR; } - bmark += (offset >> 4); + bmark = (UInt4 *)(((char *) bmark) + offset); } for (i = 0, processed = 0; i < opts->rowset_size; i++) { @@ -9,8 +9,8 @@ #ifndef __VERSION_H__ #define __VERSION_H__ -#define POSTGRESDRIVERVERSION "07.03.0102" -#define POSTGRES_RESOURCE_VERSION "07.03.0102\0" -#define PG_DRVFILE_VERSION 7,3,1,02 +#define POSTGRESDRIVERVERSION "07.03.0103" +#define POSTGRES_RESOURCE_VERSION "07.03.0103\0" +#define PG_DRVFILE_VERSION 7,3,1,03 #endif |
