Commit e38da8d6 authored by Robert Haas's avatar Robert Haas

Fix compiler warning.

It is meaningless to declare a pass-by-value return type const.
parent 763ba1b0
......@@ -45,7 +45,7 @@
static void RangeVarCallbackForPolicy(const RangeVar *rv,
Oid relid, Oid oldrelid, void *arg);
static const char parse_row_security_command(const char *cmd_name);
static char parse_row_security_command(const char *cmd_name);
static ArrayType* rls_role_list_to_array(List *roles);
/*
......@@ -102,7 +102,7 @@ RangeVarCallbackForPolicy(const RangeVar *rv, Oid relid, Oid oldrelid,
* 'insert', 'update' and 'delete'.
*
*/
static const char
static char
parse_row_security_command(const char *cmd_name)
{
char cmd;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment