Skip to content

Commit

Permalink
Remove duplicate scanint8_safe
Browse files Browse the repository at this point in the history
  • Loading branch information
robozmey committed Dec 13, 2024
1 parent 6ef970f commit 99cd7c3
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/backend/utils/adt/int8.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ scanint8(const char *str, bool errorOK, int64 *result) {
*/
bool
scanint8_safe(const char *str, bool errorOK, int64 *result, Node* escontext)
{
return scanint8_safe(str, errorOK, result, NULL);
}
bool
scanint8_safe(const char *str, bool errorOK, int64 *result, Node* escontext)
{
const char *ptr = str;
int64 tmp = 0;
Expand Down

0 comments on commit 99cd7c3

Please sign in to comment.