dumputils.h
来自「PostgreSQL7.4.6 for Linux」· C头文件 代码 · 共 31 行
H
31 行
/*------------------------------------------------------------------------- * * Utility routines for SQL dumping * Basically this is stuff that is useful in both pg_dump and pg_dumpall. * * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $Id: dumputils.h,v 1.8 2003/08/08 04:52:21 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef DUMPUTILS_H#define DUMPUTILS_H#include "pqexpbuffer.h"extern const char *fmtId(const char *identifier);extern void appendStringLiteral(PQExpBuffer buf, const char *str, bool escapeAll);extern int parse_version(const char *versionString);extern bool buildACLCommands(const char *name, const char *type, const char *acls, const char *owner, int remoteVersion, PQExpBuffer sql);#endif /* DUMPUTILS_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?