mirror of https://github.com/citusdata/citus.git
19 lines
412 B
C
19 lines
412 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* shard_utils.h
|
|
* Utilities related to shards.
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef SHARD_UTILS_H
|
|
#define SHARD_UTILS_H
|
|
|
|
#include "postgres.h"
|
|
|
|
extern Oid GetShardLocalTableOid(Oid distRelId, uint64 shardId);
|
|
|
|
#endif /* SHARD_UTILS_H */
|