Skip to content

Commit 0e24dbf

Browse files
committed
[pghintplan]: replace strcasecmp by pg_strcasecmp
1 parent 4ab1466 commit 0e24dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pg_hint_plan/pg_hint_plan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1510,7 +1510,7 @@ parse_hints(HintState *hstate, Query *parse, const char *str)
15101510
char *keyword = parser->keyword;
15111511
Hint *hint;
15121512

1513-
if (strcasecmp(buf.data, keyword) != 0)
1513+
if (pg_strcasecmp(buf.data, keyword) != 0)
15141514
continue;
15151515

15161516
hint = parser->create_func(head, keyword, parser->hint_keyword);

0 commit comments

Comments
 (0)