diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-24 15:35:37 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-24 15:35:37 -0400 |
commit | 846681fdd574548d4f430f2ff7ab44d77b4c79fe (patch) | |
tree | 72eed3f0c406a44333cde49d3c829b4420134946 /src/bin/pg_dump/parallel.h | |
parent | 9e257a181cc1dc5e19eb5d770ce09cc98f470f5f (diff) | |
download | postgresql-846681fdd574548d4f430f2ff7ab44d77b4c79fe.tar.gz postgresql-846681fdd574548d4f430f2ff7ab44d77b4c79fe.zip |
Fix some unportable constructs in parallel pg_dump code.
Didn't compile on semi-obsolete gcc, and probably not on not-gcc-at-all
either.
Diffstat (limited to 'src/bin/pg_dump/parallel.h')
-rw-r--r-- | src/bin/pg_dump/parallel.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/bin/pg_dump/parallel.h b/src/bin/pg_dump/parallel.h index 858b2a09d24..7422f12db4e 100644 --- a/src/bin/pg_dump/parallel.h +++ b/src/bin/pg_dump/parallel.h @@ -29,12 +29,6 @@ typedef enum WRKR_FINISHED } T_WorkerStatus; -typedef enum T_Action -{ - ACT_DUMP, - ACT_RESTORE, -} T_Action; - /* Arguments needed for a worker process */ typedef struct ParallelArgs { |