Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-shameem committed Dec 20, 2024
1 parent a382abb commit 19a18fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/babelfishpg_tsql/src/collation.c
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ transform_likenode(Node *node)
* of that case here.
*/
init_and_check_collation_callbacks();
if (((*collation_callbacks_ptr->has_ilike_node) (node) || (*collation_callbacks_ptr->has_like_node) (node)) && babelfish_dump_restore)
if (babelfish_dump_restore && ((*collation_callbacks_ptr->has_ilike_node) (node) || (*collation_callbacks_ptr->has_like_node) (node)))
{
int collidx_of_cs_as;

Expand Down

0 comments on commit 19a18fd

Please sign in to comment.