1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-25 13:17:41 +03:00

First cut at full support for OUTER JOINs. There are still a few loose

ends to clean up (see my message of same date to pghackers), but mostly
it works.  INITDB REQUIRED!
This commit is contained in:
Tom Lane
2000-09-12 21:07:18 +00:00
parent b5c0ab278b
commit ed5003c584
93 changed files with 6386 additions and 4262 deletions

View File

@@ -1,28 +1,31 @@
/*-------------------------------------------------------------------------
*
* gramparse.h
* scanner support routines. used by both the bootstrap lexer
* as well as the normal lexer
* Declarations for routines exported from lexer and parser files.
*
*
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: gramparse.h,v 1.12 2000/04/12 17:16:44 momjian Exp $
* $Id: gramparse.h,v 1.13 2000/09/12 21:07:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef GRAMPARSE_H
#define GRAMPARSE_H /* include once only */
#define GRAMPARSE_H
/* from parser.c */
extern int yylex(void);
/* from scan.l */
extern void init_io(void);
extern int yylex(void);
extern void scanner_init(void);
extern int base_yylex(void);
extern void yyerror(const char *message);
/* from gram.y */
extern Oid param_type(int t);
extern void parser_init(Oid *typev, int nargs);
extern Oid param_type(int t);
extern int yyparse(void);
#endif /* GRAMPARSE_H */