1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Final cleanup.

This commit is contained in:
Bruce Momjian
1999-07-16 05:00:38 +00:00
parent 9b645d481c
commit a71802e12e
210 changed files with 833 additions and 907 deletions

View File

@ -2,7 +2,7 @@
* Routines for handling of 'SET var TO',
* 'SHOW var' and 'RESET var' statements.
*
* $Id: variable.c,v 1.23 1999/07/07 09:36:45 momjian Exp $
* $Id: variable.c,v 1.24 1999/07/16 04:58:41 momjian Exp $
*
*/
@ -10,16 +10,19 @@
#include <string.h>
#include <ctype.h>
#include <time.h>
#include "postgres.h"
#include "miscadmin.h"
#include "commands/variable.h"
#include "utils/builtins.h"
#include "optimizer/internal.h"
#include "access/xact.h"
#include "commands/variable.h"
#include "miscadmin.h"
#include "optimizer/internal.h"
#include "utils/builtins.h"
#include "utils/tqual.h"
#ifdef MULTIBYTE
#include "mb/pg_wchar.h"
#endif
static bool show_date(void);
static bool reset_date(void);
static bool parse_date(const char *);