Skip to content

Commit

Permalink
Style and comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkgrgis committed Dec 29, 2024
1 parent 7b42e17 commit e4592d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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);

Expand Down
3 changes: 1 addition & 2 deletions sqlite_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e4592d2

Please sign in to comment.