From 2b642f25d398c312c35f7e00a217adf0ff525354 Mon Sep 17 00:00:00 2001 From: Harvey Kandola Date: Sun, 29 Oct 2017 19:49:11 -0400 Subject: [PATCH] boosted SQL maxAllowedPacket --- edition/boot/runtime.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edition/boot/runtime.go b/edition/boot/runtime.go index d8b7b9ee..d2e962e7 100644 --- a/edition/boot/runtime.go +++ b/edition/boot/runtime.go @@ -84,7 +84,7 @@ func InitRuntime(r *env.Runtime, s *domain.Store) bool { var stdParams = map[string]string{ "charset": "utf8mb4", "parseTime": "True", - "maxAllowedPacket": "4194304", // 4194304 // 16777216 = 16MB + "maxAllowedPacket": "104857600", // 4194304 // 16777216 = 16MB // 104857600 = 100MB } func stdConn(cs string) string {