📄 superuser.c
字号:
/*------------------------------------------------------------------------- * * superuser.c * * The superuser() function. Determines if user has superuser privilege. * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION * $Header: /usr/local/cvsroot/pgsql/src/backend/utils/misc/superuser.c,v 1.8.2.1 1999/08/02 05:25:14 scrappy Exp $ * * DESCRIPTION * See superuser(). *------------------------------------------------------------------------- */#include "postgres.h"#include "catalog/pg_shadow.h"#include "utils/syscache.h"boolsuperuser(void){/*-------------------------------------------------------------------------- The Postgres user running this command has Postgres superuser privileges.--------------------------------------------------------------------------*/ extern char *UserName; /* defined in global.c */ HeapTuple utup; utup = SearchSysCacheTuple(USENAME, PointerGetDatum(UserName), 0, 0, 0); Assert(utup != NULL); return ((Form_pg_shadow) GETSTRUCT(utup))->usesuper;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -