summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/lang
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2019-01-21 12:51:15 +1100
committerLuke Chen <luke.chen@mongodb.com>2019-01-21 12:51:15 +1100
commit6efcd5e6021d8cbf60c579dd1fbe898d5573f522 (patch)
tree852b9abc7ddb963202c6df7a391f081bd761eef3 /src/third_party/wiredtiger/lang
parent9cf00022b936cdb3c2234235d5aaa6be7ef6146a (diff)
downloadmongo-6efcd5e6021d8cbf60c579dd1fbe898d5573f522.tar.gz
Import wiredtiger: 1e7f5178b3e28d1f22d3f23cb632ba45b56d0091 from branch mongodb-4.2
ref: 2183883231..1e7f5178b3 for: 4.1.8 WT-4491 Change WT data format to include timestamps in internal page address cells WT-4520 Fix prepare transactions fallout during cursor navigation WT-4528 Retry Windows functions on access denied
Diffstat (limited to 'src/third_party/wiredtiger/lang')
-rw-r--r--src/third_party/wiredtiger/lang/python/wiredtiger.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/lang/python/wiredtiger.i b/src/third_party/wiredtiger/lang/python/wiredtiger.i
index 7d3da70f626..7a9af32a9d1 100644
--- a/src/third_party/wiredtiger/lang/python/wiredtiger.i
+++ b/src/third_party/wiredtiger/lang/python/wiredtiger.i
@@ -592,7 +592,7 @@ OVERRIDE_METHOD(__wt_cursor, WT_CURSOR, search_near, (self))
%typemap(argout) (uint64_t *recnop) { $result = PyLong_FromUnsignedLongLong(*$1); }
/* Handle returned hexadecimal timestamps. */
-%typemap(in,numinputs=0) (char *hex_timestamp) (char tsbuf[WT_TS_HEX_SIZE]) { $1 = tsbuf; }
+%typemap(in,numinputs=0) (char *hex_timestamp) (char tsbuf[WT_TS_HEX_STRING_SIZE]) { $1 = tsbuf; }
%typemap(argout) (char *hex_timestamp) {
if (*$1)
$result = SWIG_FromCharPtr($1);