From 12be55354795dbdbc37c8a90700fb9cba755c1e0 Mon Sep 17 00:00:00 2001 From: jniewerth Date: Fri, 20 Sep 2019 10:03:23 +0200 Subject: [PATCH] Reduced MAX_PACKET_SIZE to match what libmapi uses Otherwise leads to problems with certain versions of MonetDB --- R/mapi.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/mapi.R b/R/mapi.R index c8cb232..5124a0d 100644 --- a/R/mapi.R +++ b/R/mapi.R @@ -1,7 +1,7 @@ # MAPI implementation for R PROTOCOL_v9 <- 9 -MAX_PACKET_SIZE <- 8192 +MAX_PACKET_SIZE <- 8192 - 2 HASH_ALGOS <- c("md5", "sha1", "crc32", "sha256", "sha512")