OSDN Git Service

rebuid:
[eos/hostdependX86MAC64.git] / util / X86MAC64 / include / postgresql / server / bootstrap / bootstrap.h
1 /*-------------------------------------------------------------------------
2  *
3  * bootstrap.h
4  *        include file for the bootstrapping code
5  *
6  *
7  * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/bootstrap/bootstrap.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef BOOTSTRAP_H
15 #define BOOTSTRAP_H
16
17 #include "nodes/execnodes.h"
18
19
20 /*
21  * MAXATTR is the maximum number of attributes in a relation supported
22  * at bootstrap time (i.e., the max possible in a system table).
23  */
24 #define MAXATTR 40
25
26 extern Relation boot_reldesc;
27 extern Form_pg_attribute attrtypes[MAXATTR];
28 extern int      numattr;
29
30
31 extern void AuxiliaryProcessMain(int argc, char *argv[]) __attribute__((noreturn));
32
33 extern void err_out(void);
34
35 extern void closerel(char *name);
36 extern void boot_openrel(char *name);
37
38 extern void DefineAttr(char *name, char *type, int attnum);
39 extern void InsertOneTuple(Oid objectid);
40 extern void InsertOneValue(char *value, int i);
41 extern void InsertOneNull(int i);
42
43 extern char *MapArrayTypeName(const char *s);
44
45 extern void index_register(Oid heap, Oid ind, IndexInfo *indexInfo);
46 extern void build_indices(void);
47
48 extern void boot_get_type_io_data(Oid typid,
49                                           int16 *typlen,
50                                           bool *typbyval,
51                                           char *typalign,
52                                           char *typdelim,
53                                           Oid *typioparam,
54                                           Oid *typinput,
55                                           Oid *typoutput);
56
57 extern int      boot_yyparse(void);
58
59 extern int      boot_yylex(void);
60 extern void boot_yyerror(const char *str);
61
62 #endif   /* BOOTSTRAP_H */