From 82a864308aa21f2bf639c0d4131fd1489903506b Mon Sep 17 00:00:00 2001 From: velioglu Date: Tue, 27 Mar 2018 16:37:50 +0300 Subject: [PATCH] Remove SHARD_STORAGE_RELAY type --- src/include/distributed/pg_dist_shard.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/include/distributed/pg_dist_shard.h b/src/include/distributed/pg_dist_shard.h index 36cf09979..b77e1e0ce 100644 --- a/src/include/distributed/pg_dist_shard.h +++ b/src/include/distributed/pg_dist_shard.h @@ -52,10 +52,9 @@ typedef FormData_pg_dist_shard *Form_pg_dist_shard; #define Anum_pg_dist_shard_shardmaxvalue 6 /* - * Valid values for shard storage types include relay file, foreign table, - * (standard) table and columnar table. Relay file types are currently unused. + * Valid values for shard storage types include foreign table, (standard) table + * and columnar table. */ -#define SHARD_STORAGE_RELAY 'r' #define SHARD_STORAGE_FOREIGN 'f' #define SHARD_STORAGE_TABLE 't' #define SHARD_STORAGE_COLUMNAR 'c'