diff options
Diffstat (limited to 'src/include/partitioning/partdefs.h')
-rw-r--r-- | src/include/partitioning/partdefs.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/partitioning/partdefs.h b/src/include/partitioning/partdefs.h new file mode 100644 index 00000000000..1fe1b4868e9 --- /dev/null +++ b/src/include/partitioning/partdefs.h @@ -0,0 +1,24 @@ +/*------------------------------------------------------------------------- + * + * partdefs.h + * Base definitions for partitioned table handling + * + * Copyright (c) 2007-2018, 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; + +#endif /* PARTDEFS_H */ |