Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8c3b024

Browse files
committed
Remove unused GUC option
1 parent 1519b41 commit 8c3b024

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

jsonbc.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ static shm_toc *toc = NULL;
4646
/* global */
4747
void *workers_data = NULL;
4848
int jsonbc_nworkers = -1;
49-
int jsonbc_cache_size = 0;
5049
int jsonbc_queue_size = 0;
5150

5251
static void init_memory_context(bool);
@@ -182,19 +181,6 @@ setup_guc_variables(void)
182181
NULL,
183182
NULL);
184183

185-
DefineCustomIntVariable("jsonbc.cache_size",
186-
"Cache size for each compression options (kilobytes)",
187-
NULL,
188-
&jsonbc_cache_size,
189-
1, /* 1kb by default */
190-
0, /* no cache */
191-
1024, /* 1 mb */
192-
PGC_SUSET,
193-
GUC_UNIT_KB,
194-
NULL,
195-
NULL,
196-
NULL);
197-
198184
DefineCustomIntVariable("jsonbc.queue_size",
199185
"Size of queue used for communication with workers (kilobytes)",
200186
NULL,

0 commit comments

Comments
 (0)