Skip to content

Commit

Permalink
Fix dependencies bug in Expr.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-dldc committed Jan 29, 2024
1 parent 476c125 commit 38391ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Expr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export const Expr = (() => {
return create(builder.Expr.NotIn.tableName(expr.ast, subquery[PRIV].name), {
nullable: false,
parse: Datatype.boolean.parse,
dependencies: [subquery[PRIV]],
dependencies: appendDependencies(expr[PRIV].dependencies ?? [], subquery[PRIV]),
});
}

Expand Down

0 comments on commit 38391ca

Please sign in to comment.