]> granicus.if.org Git - postgresql/commitdiff
This patch removes two unused global variables from globals.c
authorBruce Momjian <bruce@momjian.us>
Thu, 3 Oct 2002 17:07:53 +0000 (17:07 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 3 Oct 2002 17:07:53 +0000 (17:07 +0000)
Neil Conway

src/backend/utils/init/globals.c
src/include/miscadmin.h

index 91c3ba0146e531098ca38a0ac9aeaa87116b3093..87a19d016d8dfc0b9921e9eab776edb31789eb53 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.67 2002/09/04 20:31:31 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.68 2002/10/03 17:07:53 momjian Exp $
  *
  * NOTES
  *       Globals used all over the place should be declared here and not
@@ -66,10 +66,6 @@ bool         CDayLight = false;
 int                    CTimeZone = 0;
 char           CTZName[MAXTZLEN + 1] = "";
 
-char           DateFormat[20] = "%d-%m-%Y";            /* mjl: sizes! or better
-                                                                                                * malloc? XXX */
-char           FloatFormat[20] = "%f";
-
 bool           enableFsync = true;
 bool           allowSystemTableMods = false;
 int                    SortMem = 1024;
index 0402a690c5f52e3e8220502b061d7f3bad3cdc65..1dbd737db3bb4b98cfca45af8e87c181f35b61fd 100644 (file)
@@ -12,7 +12,7 @@
  * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: miscadmin.h,v 1.110 2002/09/05 18:28:46 petere Exp $
+ * $Id: miscadmin.h,v 1.111 2002/10/03 17:07:53 momjian Exp $
  *
  * NOTES
  *       some of the information in this file should be moved to
@@ -161,9 +161,6 @@ extern bool CDayLight;
 extern int     CTimeZone;
 extern char CTZName[];
 
-extern char FloatFormat[];
-extern char DateFormat[];
-
 extern bool enableFsync;
 extern bool allowSystemTableMods;
 extern DLLIMPORT int SortMem;