summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pgapi30.c2
-rw-r--r--version.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/pgapi30.c b/pgapi30.c
index 94cb150..07d08cc 100644
--- a/pgapi30.c
+++ b/pgapi30.c
@@ -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++)
{
diff --git a/version.h b/version.h
index 7f8760a..d354967 100644
--- a/version.h
+++ b/version.h
@@ -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