aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2014-08-29 05:10:47 +0900
committerFujii Masao <fujii@postgresql.org>2014-08-29 05:10:47 +0900
commit9df492664a74a948c87232f523eea637920a516b (patch)
tree09d29661892eee5cb01b401f5d4cfce13a12c929 /src/include
parent11a020eb6e4023a1570a2788ba22dd6aafbd02dc (diff)
downloadpostgresql-9df492664a74a948c87232f523eea637920a516b.tar.gz
postgresql-9df492664a74a948c87232f523eea637920a516b.zip
Revert "Allow units to be specified in relation option setting value."
This reverts commit e23014f3d40f7d2c23bc97207fd28efbe5ba102b. As the side effect of the reverted commit, when the unit is specified, the reloption was stored in the catalog with the unit. This broke pg_dump (specifically, it prevented pg_dump from outputting restorable backup regarding the reloption) and turned the buildfarm red. Revert the commit until the fixed version is ready.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/reloptions.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/reloptions.h b/src/include/access/reloptions.h
index a54bbd0eaa6..c22644841f9 100644
--- a/src/include/access/reloptions.h
+++ b/src/include/access/reloptions.h
@@ -92,7 +92,6 @@ typedef struct relopt_int
int default_val;
int min;
int max;
- int flags;
} relopt_int;
typedef struct relopt_real
@@ -245,7 +244,7 @@ extern relopt_kind add_reloption_kind(void);
extern void add_bool_reloption(bits32 kinds, char *name, char *desc,
bool default_val);
extern void add_int_reloption(bits32 kinds, char *name, char *desc,
- int default_val, int min_val, int max_val, int flags_val);
+ int default_val, int min_val, int max_val);
extern void add_real_reloption(bits32 kinds, char *name, char *desc,
double default_val, double min_val, double max_val);
extern void add_string_reloption(bits32 kinds, char *name, char *desc,