mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
26 lines
680 B
C
26 lines
680 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* partdefs.h
|
|
* Base definitions for partitioned table handling
|
|
*
|
|
* Copyright (c) 2007-2020, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/partitioning/partdefs.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARTDEFS_H
|
|
#define PARTDEFS_H
|
|
|
|
|
|
typedef struct PartitionBoundInfoData *PartitionBoundInfo;
|
|
|
|
typedef struct PartitionKeyData *PartitionKey;
|
|
|
|
typedef struct PartitionBoundSpec PartitionBoundSpec;
|
|
|
|
typedef struct PartitionDescData *PartitionDesc;
|
|
|
|
typedef struct PartitionDirectoryData *PartitionDirectory;
|
|
|
|
#endif /* PARTDEFS_H */
|