mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-06 12:20:15 +01:00
in schemas other than the system namespace; however, there's no search path yet, and not all operations work yet on tables outside the system namespace.
26 lines
622 B
C
26 lines
622 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rename.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rename.h,v 1.14 2002/03/26 19:16:49 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef RENAME_H
|
|
#define RENAME_H
|
|
|
|
extern void renameatt(char *relname,
|
|
char *oldattname,
|
|
char *newattname,
|
|
int recurse);
|
|
|
|
extern void renamerel(const RangeVar *relation,
|
|
const char *newrelname);
|
|
|
|
#endif /* RENAME_H */
|