mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Move get_attdisbursion to lsyscache. Clean up get_typdefault.
This commit is contained in:
@ -1,12 +1,11 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* lsyscache.h
|
||||
*
|
||||
*
|
||||
* Convenience routines for common queries in the system catalog cache.
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: lsyscache.h,v 1.18 1999/07/15 23:04:23 momjian Exp $
|
||||
* $Id: lsyscache.h,v 1.19 1999/08/09 03:13:28 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -21,6 +20,8 @@ extern AttrNumber get_attnum(Oid relid, char *attname);
|
||||
extern Oid get_atttype(Oid relid, AttrNumber attnum);
|
||||
extern bool get_attisset(Oid relid, char *attname);
|
||||
extern int32 get_atttypmod(Oid relid, AttrNumber attnum);
|
||||
extern double get_attdisbursion(Oid relid, AttrNumber attnum,
|
||||
double min_estimate);
|
||||
extern RegProcedure get_opcode(Oid opid);
|
||||
extern char *get_opname(Oid opid);
|
||||
extern bool op_mergejoinable(Oid opid, Oid ltype, Oid rtype,
|
||||
@ -38,6 +39,6 @@ extern Oid get_ruleid(char *rulename);
|
||||
extern Oid get_eventrelid(Oid ruleid);
|
||||
extern int16 get_typlen(Oid typid);
|
||||
extern bool get_typbyval(Oid typid);
|
||||
extern struct varlena *get_typdefault(Oid typid);
|
||||
extern Datum get_typdefault(Oid typid);
|
||||
|
||||
#endif /* LSYSCACHE_H */
|
||||
|
Reference in New Issue
Block a user