|
2 | 2 | * Routines for handling of 'SET var TO', |
3 | 3 | * 'SHOW var' and 'RESET var' statements. |
4 | 4 | * |
5 | | - * $Id: variable.c,v 1.21 1997/11/10 15:37:15 thomas Exp $ |
| 5 | + * $Id: variable.c,v 1.22 1997/11/14 15:34:09 thomas Exp $ |
6 | 6 | * |
7 | 7 | */ |
8 | 8 |
|
@@ -540,27 +540,13 @@ struct VariableParsers |
540 | 540 | }VariableParsers[]= |
541 | 541 |
|
542 | 542 | { |
543 | | -{ |
544 | | -"datestyle",parse_date,show_date,reset_date |
545 | | -}, |
546 | | -{ |
547 | | -"timezone",parse_timezone,show_timezone,reset_timezone |
548 | | -}, |
549 | | -{ |
550 | | -"cost_heap",parse_cost_heap,show_cost_heap,reset_cost_heap |
551 | | -}, |
552 | | -{ |
553 | | -"cost_index",parse_cost_index,show_cost_index,reset_cost_index |
554 | | -}, |
555 | | -{ |
556 | | -"geqo",parse_geqo,show_geqo,reset_geqo |
557 | | -}, |
558 | | -{ |
559 | | -"r_plans",parse_r_plans,show_r_plans,reset_r_plans |
560 | | -}, |
561 | | -{ |
562 | | -NULL,NULL,NULL |
563 | | -} |
| 543 | +{"datestyle",parse_date,show_date,reset_date }, |
| 544 | +{"timezone",parse_timezone,show_timezone,reset_timezone }, |
| 545 | +{"cost_heap",parse_cost_heap,show_cost_heap,reset_cost_heap }, |
| 546 | +{"cost_index",parse_cost_index,show_cost_index,reset_cost_index }, |
| 547 | +{"geqo",parse_geqo,show_geqo,reset_geqo }, |
| 548 | +{"r_plans",parse_r_plans,show_r_plans,reset_r_plans }, |
| 549 | +{NULL,NULL,NULL,NULL } |
564 | 550 | }; |
565 | 551 |
|
566 | 552 | /*-----------------------------------------------------------------------*/ |
|