aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1997-11-14 15:34:09 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1997-11-14 15:34:09 +0000
commitf3311457ec2d118de4ee6def1c61dbef198f2054 (patch)
treef6d20bc81f62a7cb3ab7d28ecba567aad60f9739
parent430169a5ea96b7245964c094010675b03a3dbb32 (diff)
downloadpostgresql-f3311457ec2d118de4ee6def1c61dbef198f2054.tar.gz
postgresql-f3311457ec2d118de4ee6def1c61dbef198f2054.zip
Reformat parser table (cosmetic only).
-rw-r--r--src/backend/tcop/variable.c30
1 files changed, 8 insertions, 22 deletions
diff --git a/src/backend/tcop/variable.c b/src/backend/tcop/variable.c
index 4214aac03d7..dfae3f7657e 100644
--- a/src/backend/tcop/variable.c
+++ b/src/backend/tcop/variable.c
@@ -2,7 +2,7 @@
* Routines for handling of 'SET var TO',
* 'SHOW var' and 'RESET var' statements.
*
- * $Id: variable.c,v 1.21 1997/11/10 15:37:15 thomas Exp $
+ * $Id: variable.c,v 1.22 1997/11/14 15:34:09 thomas Exp $
*
*/
@@ -540,27 +540,13 @@ struct VariableParsers
} VariableParsers[] =
{
- {
- "datestyle", parse_date, show_date, reset_date
- },
- {
- "timezone", parse_timezone, show_timezone, reset_timezone
- },
- {
- "cost_heap", parse_cost_heap, show_cost_heap, reset_cost_heap
- },
- {
- "cost_index", parse_cost_index, show_cost_index, reset_cost_index
- },
- {
- "geqo", parse_geqo, show_geqo, reset_geqo
- },
- {
- "r_plans", parse_r_plans, show_r_plans, reset_r_plans
- },
- {
- NULL, NULL, NULL
- }
+ { "datestyle", parse_date, show_date, reset_date },
+ { "timezone", parse_timezone, show_timezone, reset_timezone },
+ { "cost_heap", parse_cost_heap, show_cost_heap, reset_cost_heap },
+ { "cost_index", parse_cost_index, show_cost_index, reset_cost_index },
+ { "geqo", parse_geqo, show_geqo, reset_geqo },
+ { "r_plans", parse_r_plans, show_r_plans, reset_r_plans },
+ { NULL, NULL, NULL, NULL }
};
/*-----------------------------------------------------------------------*/