Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
d831e9ce
Commit
d831e9ce
authored
27 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Change mixed-case routines to lower-case if referenced in pg_proc.h
parent
812d5c9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/utils/init/miscinit.c
+6
-2
6 additions, 2 deletions
src/backend/utils/init/miscinit.c
src/include/miscadmin.h
+4
-2
4 additions, 2 deletions
src/include/miscadmin.h
with
10 additions
and
4 deletions
src/backend/utils/init/miscinit.c
+
6
−
2
View file @
d831e9ce
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.
4
1997/0
2/14 04:18:17 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.
5
1997/0
4/27 19:20:37 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -260,10 +260,14 @@ SetDatabaseName(char *name)
*
* SetPgUserName must be called before InitPostgres, since the setuid()
* is done there.
*
* Replace GetPgUserName() with a lower-case version
* to allow use in new case-insensitive SQL (referenced
* in pg_proc.h). Define GetPgUserName() as a macro - tgl 97/04/26
* ----------------
*/
char
*
G
et
PgU
ser
N
ame
()
g
et
pgu
ser
n
ame
()
{
return
UserName
;
}
...
...
This diff is collapsed.
Click to expand it.
src/include/miscadmin.h
+
4
−
2
View file @
d831e9ce
...
...
@@ -11,7 +11,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: miscadmin.h,v 1.
8
1997/0
3
/2
5 08:09:59 scrappy
Exp $
* $Id: miscadmin.h,v 1.
9
1997/0
4
/2
7 19:21:06 thomas
Exp $
*
* NOTES
* some of the information in this file will be moved to
...
...
@@ -109,7 +109,7 @@ extern char *GetDatabasePath(void);
extern
char
*
GetDatabaseName
(
void
);
extern
void
SetDatabaseName
(
char
*
name
);
extern
void
SetDatabasePath
(
char
*
path
);
extern
char
*
G
et
PgU
ser
N
ame
(
void
);
extern
char
*
g
et
pgu
ser
n
ame
(
void
);
extern
void
SetPgUserName
(
void
);
extern
Oid
GetUserId
(
void
);
extern
void
SetUserId
(
void
);
...
...
@@ -117,6 +117,8 @@ extern int ValidateBackend(char *path);
extern
int
FindBackend
(
char
*
backend
,
char
*
argv0
);
extern
int
CheckPathAccess
(
char
*
path
,
char
*
name
,
int
open_mode
);
/* lower case version for case-insensitive SQL referenced in pg_proc.h */
#define GetPgUserName() getpgusername()
/*****************************************************************************
* pmod.h -- *
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment