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
b5b3735f
Commit
b5b3735f
authored
Feb 25, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pg_user.h is obseleted in favor of pg_shadow.h
parent
6132387d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
101 deletions
+0
-101
src/include/catalog/pg_user.h
src/include/catalog/pg_user.h
+0
-101
No files found.
src/include/catalog/pg_user.h
deleted
100644 → 0
View file @
6132387d
/*-------------------------------------------------------------------------
*
* pg_user.h--
* definition of the system "user" relation (pg_user)
* along with the relation's initial contents.
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_user.h,v 1.9 1998/02/19 17:19:51 momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
* information from the DATA() statements.
*
*-------------------------------------------------------------------------
*/
#ifndef PG_USER_H
#define PG_USER_H
/* Prototype required for superuser() from superuser.c */
bool
superuser
(
void
);
/* ----------------
* pg_user definition. cpp turns this into
* typedef struct FormData_pg_user
* ----------------
*/
CATALOG
(
pg_user
)
BOOTSTRAP
{
NameData
usename
;
int4
usesysid
;
bool
usecreatedb
;
bool
usetrace
;
bool
usesuper
;
bool
usecatupd
;
text
passwd
;
int4
valuntil
;
}
FormData_pg_user
;
/* ----------------
* Form_pg_user corresponds to a pointer to a tuple with
* the format of pg_user relation.
* ----------------
*/
typedef
FormData_pg_user
*
Form_pg_user
;
/* ----------------
* compiler constants for pg_user
* ----------------
*/
#define Natts_pg_user 8
#define Anum_pg_user_usename 1
#define Anum_pg_user_usesysid 2
#define Anum_pg_user_usecreatedb 3
#define Anum_pg_user_usetrace 4
#define Anum_pg_user_usesuper 5
#define Anum_pg_user_usecatupd 6
#define Anum_pg_user_passwd 7
#define Anum_pg_user_valuntil 8
/* ----------------
* initial contents of pg_user
* ----------------
*/
DATA
(
insert
OID
=
0
(
postgres
PGUID
t
t
t
t
_null_
2116994400
));
BKI_BEGIN
#ifdef ALLOW_PG_GROUP
BKI_END
DATA
(
insert
OID
=
0
(
mike
799
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
mao
1806
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
hellers
1089
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
joey
5209
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
jolly
5443
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
sunita
6559
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
paxson
3029
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
marc
2435
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
jiangwu
6124
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
aoki
2360
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
avi
31080
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
kristin
1123
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
andrew
5229
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
nobuko
5493
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
hartzell
6676
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
devine
6724
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
boris
6396
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
sklower
354
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
marcel
31113
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
ginger
3692
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
woodruff
31026
t
t
t
t
_null_
2116994400
));
DATA
(
insert
OID
=
0
(
searcher
8261
t
t
t
t
_null_
2116994400
));
BKI_BEGIN
#endif
/* ALLOW_PG_GROUP */
BKI_END
#endif
/* PG_USER_H */
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