From: Kyotaro Horiguchi Date: Wed, 12 Jan 2022 08:01:32 +0000 (+0900) Subject: Fix comment style X-Git-Tag: 1.6~4 X-Git-Url: http://git.osdn.net/view?p=pgstoreplans%2Fpg_store_plans.git;a=commitdiff_plain;h=b5190304c55615e360554e2ad32775dac105ae7b Fix comment style The end mark of a single-line comment went to the next line. Fix it. --- diff --git a/pg_store_plans.c b/pg_store_plans.c index 71297b6..cfc2578 100644 --- a/pg_store_plans.c +++ b/pg_store_plans.c @@ -83,8 +83,7 @@ static int max_plan_len = 5000; #define STICKY_DECREASE_FACTOR (0.50) /* factor for sticky entries */ #define USAGE_DEALLOC_PERCENT 5 /* free this % of entries at once */ -/* In PostgreSQL 11, queryid becomes a uint64 internally. - */ +/* In PostgreSQL 11, queryid becomes a uint64 internally. */ #if PG_VERSION_NUM >= 110000 typedef uint64 queryid_t; #define PGSP_NO_QUERYID UINT64CONST(0)