We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents edd676c + 6839555 commit 40af68aCopy full SHA for 40af68a
bench/db_setup.sql
@@ -13,6 +13,9 @@ USE boost_mysql_bench;
13
-- Required for the WITH RECURSIVE and the amount of rows we're generating
14
SET SESSION cte_max_recursion_depth = 15000;
15
16
+-- Having this prevents sporadic CI failures
17
+SET global max_connections = 5000;
18
+
19
-- An arbitrary value to pass to RAND(@seed). RAND(@i) generates a
20
-- deterministic sequence, vs RAND(@seed)
21
SET @seed = 3;
include/boost/mysql/metadata.hpp
@@ -16,6 +16,7 @@
#include <boost/mysql/detail/flags.hpp>
#include <cstddef>
+#include <cstdint>
#include <cstring>
#include <vector>
22
0 commit comments