Sha256: cec18136d2b4b6742831c8f2e810fc17ffb2222e0d600de0dccbc84f26b8aa9d

Contents?: true

Size: 1.3 KB

Versions: 12

Compression:

Stored size: 1.3 KB

Contents

/*-------------------------------------------------------------------------
 *
 * parser.h
 *		Definitions for the "raw" parser (flex and bison phases only)
 *
 * This is the external API for the raw lexing/parsing functions.
 *
 * Portions Copyright (c) 2003-2013, PgPool Global Development Group
 * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/parser/parser.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef PARSER_H
#define PARSER_H

#include "pg_list.h"
#include "parsenodes.h"


typedef enum
{
	BACKSLASH_QUOTE_OFF,
	BACKSLASH_QUOTE_ON,
	BACKSLASH_QUOTE_SAFE_ENCODING
}	BackslashQuoteType;

/* GUC variables in scan.l (every one of these is a bad idea :-() */
extern int	backslash_quote;
extern bool escape_string_warning;
extern PGDLLIMPORT bool standard_conforming_strings;


/* Primary entry point for the raw parsing functions */
extern List *raw_parser(const char *str);
extern void free_parser(void);

/* Utility functions exported by gram.y (perhaps these should be elsewhere) */
extern List *SystemFuncName(char *name);
extern TypeName *SystemTypeName(char *name);

extern void parser_set_param(const char *name, const char *value);

#endif   /* PARSER_H */

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
prestogres-0.4.8 pgpool2/parser/parser.h
prestogres-0.4.7 pgpool2/parser/parser.h
prestogres-0.4.6 pgpool2/parser/parser.h
prestogres-0.4.5 pgpool2/parser/parser.h
prestogres-0.4.4 pgpool2/parser/parser.h
prestogres-0.4.3 pgpool2/parser/parser.h
prestogres-0.4.2 pgpool2/parser/parser.h
prestogres-0.4.1 pgpool2/parser/parser.h
prestogres-0.4.0 pgpool2/parser/parser.h
prestogres-0.3.0 pgpool2/parser/parser.h
prestogres-0.2.0 pgpool2/parser/parser.h
prestogres-0.1.0 pgpool2/parser/parser.h