mirror of https://github.com/citusdata/citus.git
20 lines
428 B
C
20 lines
428 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* grant.c
|
|
* Commands for granting access to distributed tables.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "distributed/commands.h"
|
|
|
|
|
|
/* placeholder for PreprocessGrantStmt */
|
|
List *
|
|
PreprocessGrantStmt(Node *node, const char *queryString)
|
|
{
|
|
return NIL;
|
|
}
|