From e4592d21a8034a11b96cdde9439117ebd47cd89b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Sun, 29 Dec 2024 13:49:36 +0300 Subject: [PATCH] Style and comment fixes --- connection.c | 3 ++- sqlite_fdw.c | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/connection.c b/connection.c index 282f59d3..17a673d7 100644 --- a/connection.c +++ b/connection.c @@ -184,6 +184,7 @@ sqlite_get_connection(ForeignServer *server, bool truncatable) } /* + * sqlite_open_db * Open remote sqlite database using specified database path * and flags of opened file descriptor mode. */ @@ -230,7 +231,7 @@ sqlite_make_new_connection(ConnCacheEntry *entry, ForeignServer *server) { const char *dbpath = NULL; ListCell *lc; - int flags = 0; + int flags = 0; Assert(entry->conn == NULL); diff --git a/sqlite_fdw.c b/sqlite_fdw.c index 3366b17b..a20e7c1e 100644 --- a/sqlite_fdw.c +++ b/sqlite_fdw.c @@ -300,8 +300,7 @@ static void sqliteGetForeignJoinPaths(PlannerInfo *root, JoinType jointype, JoinPathExtraData *extra); -static void - sqliteGetForeignUpperPaths(PlannerInfo *root, +static void sqliteGetForeignUpperPaths(PlannerInfo *root, UpperRelationKind stage, RelOptInfo *input_rel, RelOptInfo *output_rel