OSDN Git Service

Fix comment style
authorKyotaro Horiguchi <horikyota.ntt@gmail.com>
Wed, 12 Jan 2022 08:01:32 +0000 (17:01 +0900)
committerKyotaro Horiguchi <horikyota.ntt@gmail.com>
Mon, 17 Jan 2022 02:47:31 +0000 (11:47 +0900)
The end mark of a single-line comment went to the next line. Fix it.

pg_store_plans.c

index 71297b6..cfc2578 100644 (file)
@@ -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)