Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed Aug 16, 2024
1 parent 1facc3d commit bbbf2ae
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ public ShowDatabasesOperation(String catalogName, String preposition, LikeOp lik
}

public ShowDatabasesOperation(LikeOp likeOp) {
super(null, null, null, likeOp);
this(null, null, likeOp);
}

public ShowDatabasesOperation() {
this(null, null, null);
}

@Override
Expand Down

0 comments on commit bbbf2ae

Please sign in to comment.