Skip to content

Commit a8ecf2e

Browse files
author
Oleg Ivanov
committed
Style fix
1 parent f9d5660 commit a8ecf2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/aqo/path_utils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ get_path_clauses(Path *path, PlannerInfo *root, List **selectivities)
7373
List *cur;
7474
List *cur_sel = NIL;
7575

76-
if (selectivities)
77-
*selectivities = NIL;
76+
Assert(selectivities != NULL);
77+
*selectivities = NIL;
7878

7979
if (path == NULL)
8080
return NIL;

0 commit comments

Comments
 (0)