From 34de822738dde854f5ecfd296e50722791d1f44b Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 19 Jun 2018 16:33:33 -0700 Subject: [PATCH] Re-enable subtree object pool after accidentally disabling it --- src/runtime/subtree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/subtree.c b/src/runtime/subtree.c index 89e9d0d5..e0209947 100644 --- a/src/runtime/subtree.c +++ b/src/runtime/subtree.c @@ -19,7 +19,7 @@ typedef struct { TSStateId TS_TREE_STATE_NONE = USHRT_MAX; -static const uint32_t MAX_TREE_POOL_SIZE = 0; +static const uint32_t MAX_TREE_POOL_SIZE = 1024; static const ExternalScannerState empty_state = {.length = 0, .short_data = {0}};