Skip to content

Commit

Permalink
Kill the unused plparrot_elog function
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Mar 24, 2010
1 parent 02a4d8e commit a6a6a58
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/plparrot.c
Expand Up @@ -114,8 +114,6 @@ execq(text *sql, int cnt)
Datum plparrot_call_handler(PG_FUNCTION_ARGS);
Datum plparrot_func_handler(PG_FUNCTION_ARGS);

void plparrot_elog(int level, char *message);

/* this is saved and restored by plparrot_call_handler */
static plparrot_call_data *current_call_data = NULL;

Expand Down Expand Up @@ -189,9 +187,3 @@ plparrot_func_handler(PG_FUNCTION_ARGS)
*/
return retval;
}

void
plparrot_elog(int level, char *message)
{
elog(level, "%s", message);
}

0 comments on commit a6a6a58

Please sign in to comment.