From 818b6fca4350f07e7bbf12b092db1dab586de1a2 Mon Sep 17 00:00:00 2001 From: chirpyli Date: Mon, 28 Jul 2025 17:17:43 +0800 Subject: [PATCH] fix readme doc error, change guc 'limit_select_only' to 'filter_select_only' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e069956..0c4cfb9 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ which means do not apply any filter. So a typical pair of settings in the shared_preload_libraries = 'plan_filter' plan_filter.statement_cost_limit = 100000.0 -`ļimit_select_only` limits filtering to SELECT statements only. The default is false. +`filter_select_only` limits filtering to SELECT statements only. The default is false. - plan_filter.limit_select_only = true + plan_filter.filter_select_only = true turns it on. Be aware that SELECT != READONLY, since SELECT statements might also modify data.