mirror of https://github.com/citusdata/citus.git
20 lines
407 B
C
20 lines
407 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* grant.c
|
|
* Commands for granting access to distributed tables.
|
|
*
|
|
* Copyright (c) 2018, Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "distributed/commands.h"
|
|
|
|
|
|
/* placeholder for PlanGrantStmt */
|
|
List *
|
|
PlanGrantStmt(GrantStmt *grantStmt)
|
|
{
|
|
return NIL;
|
|
}
|