Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d4eae725
Commit
d4eae725
authored
Oct 03, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This patch removes two unused global variables from globals.c
Neil Conway
parent
50869ef8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
9 deletions
+2
-9
src/backend/utils/init/globals.c
src/backend/utils/init/globals.c
+1
-5
src/include/miscadmin.h
src/include/miscadmin.h
+1
-4
No files found.
src/backend/utils/init/globals.c
View file @
d4eae725
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.6
7 2002/09/04 20:31:31
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.6
8 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
;
...
...
src/include/miscadmin.h
View file @
d4eae725
...
...
@@ -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.11
0 2002/09/05 18:28:46 petere
Exp $
* $Id: miscadmin.h,v 1.11
1 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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment