Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0201d79

Browse filesBrowse files
committed
Avoid re-typedef'ing PartitionTupleRouting
Apparently, gcc on macOS (?) doesn't like it. Per buildfarm.
1 parent 4092319 commit 0201d79
Copy full SHA for 0201d79

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/backend/executor/execPartition.c

Copy file name to clipboardExpand all lines: src/backend/executor/execPartition.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
* Memory context used to allocate subsidiary structs.
8383
*-----------------------
8484
*/
85-
typedef struct PartitionTupleRouting
85+
struct PartitionTupleRouting
8686
{
8787
Relation partition_root;
8888
PartitionDispatch *partition_dispatch_info;
@@ -93,7 +93,7 @@ typedef struct PartitionTupleRouting
9393
int max_partitions;
9494
HTAB *subplan_resultrel_htab;
9595
MemoryContext memcxt;
96-
} PartitionTupleRouting;
96+
};
9797

9898
/*-----------------------
9999
* PartitionDispatch - information about one partitioned table in a partition

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.