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
c41b6b1b
Commit
c41b6b1b
authored
Oct 30, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix small problem Tom Lane found with pgindent run.
parent
d650a6f5
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
76 additions
and
80 deletions
+76
-80
contrib/pgcrypto/crypt-des.c
contrib/pgcrypto/crypt-des.c
+7
-7
src/backend/optimizer/path/_deadcode/predmig.c
src/backend/optimizer/path/_deadcode/predmig.c
+2
-2
src/backend/storage/ipc/ipc.c
src/backend/storage/ipc/ipc.c
+2
-4
src/backend/storage/lmgr/lock.c
src/backend/storage/lmgr/lock.c
+9
-9
src/backend/tioga/tgRecipe.h
src/backend/tioga/tgRecipe.h
+2
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+48
-48
src/bin/psql/print.c
src/bin/psql/print.c
+1
-5
src/interfaces/ecpg/lib/misc.c
src/interfaces/ecpg/lib/misc.c
+3
-3
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+2
-1
No files found.
contrib/pgcrypto/crypt-des.c
View file @
c41b6b1b
src/backend/optimizer/path/_deadcode/predmig.c
View file @
c41b6b1b
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/_deadcode/Attic/predmig.c,v 1.1
2 2001/10/28 06:25:44
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/_deadcode/Attic/predmig.c,v 1.1
3 2001/10/30 05:38:55
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
...
src/backend/storage/ipc/ipc.c
View file @
c41b6b1b
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.7
3 2001/10/28 06:25:49
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.7
4 2001/10/30 05:38:55
momjian Exp $
*
*
* NOTES
* NOTES
*
*
...
@@ -94,9 +94,7 @@ static struct ONEXIT
...
@@ -94,9 +94,7 @@ static struct ONEXIT
{
{
void
(
*
function
)
();
void
(
*
function
)
();
Datum
arg
;
Datum
arg
;
}
on_proc_exit_list
[
MAX_ON_EXITS
],
}
on_proc_exit_list
[
MAX_ON_EXITS
],
on_shmem_exit_list
[
MAX_ON_EXITS
];
on_shmem_exit_list
[
MAX_ON_EXITS
];
static
int
on_proc_exit_index
,
static
int
on_proc_exit_index
,
on_shmem_exit_index
;
on_shmem_exit_index
;
...
...
src/backend/storage/lmgr/lock.c
View file @
c41b6b1b
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.10
2 2001/10/28 06:25:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.10
3 2001/10/30 05:38:55
momjian Exp $
*
*
* NOTES
* NOTES
* Outside modules can create a lock table and acquire/release
* Outside modules can create a lock table and acquire/release
...
...
src/backend/tioga/tgRecipe.h
View file @
c41b6b1b
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: tgRecipe.h,v 1.
19 2001/10/28 06:25:51
momjian Exp $
* $Id: tgRecipe.h,v 1.
20 2001/10/30 05:38:55
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -29,6 +29,7 @@ typedef struct
...
@@ -29,6 +29,7 @@ typedef struct
y
;
y
;
}
Point
;
/* this should match whatever is in
}
Point
;
/* this should match whatever is in
*
* geo-decls.h */
* geo-decls.h */
#endif
/* TIOGA_FRONTEND */
#endif
/* TIOGA_FRONTEND */
...
...
src/backend/utils/misc/guc.c
View file @
c41b6b1b
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* Support for grand unified configuration scheme, including SET
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
* command, configuration file, and command line options.
*
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.5
7 2001/10/28 06:25
:56 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.5
8 2001/10/30 05:38
:56 momjian Exp $
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
...
src/bin/psql/print.c
View file @
c41b6b1b
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright 2000 by PostgreSQL Global Development Group
* Copyright 2000 by PostgreSQL Global Development Group
*
*
* $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.2
4 2001/10/29 06:45:32 ishii
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.2
5 2001/10/30 05:38:56 momjian
Exp $
*/
*/
#include "postgres_fe.h"
#include "postgres_fe.h"
#include "print.h"
#include "print.h"
...
@@ -261,9 +261,7 @@ print_aligned_text(const char *title, const char *const * headers,
...
@@ -261,9 +261,7 @@ print_aligned_text(const char *title, const char *const * headers,
}
}
}
}
else
else
{
cell_w
=
0
;
cell_w
=
0
;
}
#endif
#endif
...
@@ -479,9 +477,7 @@ print_aligned_vertical(const char *title, const char *const * headers,
...
@@ -479,9 +477,7 @@ print_aligned_vertical(const char *title, const char *const * headers,
}
}
}
}
else
else
{
cell_w
=
0
;
cell_w
=
0
;
}
/* find longest data cell */
/* find longest data cell */
for
(
i
=
0
,
ptr
=
cells
;
*
ptr
;
ptr
++
,
i
++
)
for
(
i
=
0
,
ptr
=
cells
;
*
ptr
;
ptr
++
,
i
++
)
...
...
src/interfaces/ecpg/lib/misc.c
View file @
c41b6b1b
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/misc.c,v 1.
8 2001/10/28 06:26:11
momjian Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/misc.c,v 1.
9 2001/10/30 05:38:56
momjian Exp $ */
#include "postgres_fe.h"
#include "postgres_fe.h"
...
...
src/tools/pgindent/pgindent
View file @
c41b6b1b
...
@@ -50,7 +50,8 @@ do
...
@@ -50,7 +50,8 @@ do
line2 ~ "^{[ ]*$" &&
line2 ~ "^{[ ]*$" &&
line1 !~ "^struct" &&
line1 !~ "^struct" &&
line1 !~ "^enum" &&
line1 !~ "^enum" &&
line1 !~ "^typedef")
line1 !~ "^typedef" &&
line1 !~ "=" )
print "int pgindent_func_no_var_fix;";
print "int pgindent_func_no_var_fix;";
line1 = line2;
line1 = line2;
}
}
...
...
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