We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentec806d7 commit76b110cCopy full SHA for 76b110c
src/pl/plpgsql/src/pl_comp.c
@@ -3,7 +3,7 @@
3
* procedural language
4
*
5
* IDENTIFICATION
6
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.13 1999/11/22 17:56:39 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.14 1999/12/20 01:41:32 tgl Exp $
7
8
* This software is copyrighted by Jan Wieck - Hamburg.
9
@@ -66,10 +66,9 @@
66
* Variables in the parser that shouldn't go into plpgsql.h
67
* ----------
68
*/
69
-PLPGSQL_YYSTYPEplpgsql_yylval;
70
-charplpgsql_yytext[];
71
-intplpgsql_yylineno;
72
-voidplpgsql_yyerror(constchar*s);
+externPLPGSQL_YYSTYPEplpgsql_yylval;
+externcharplpgsql_yytext[];
+externintplpgsql_yylineno;
73
74
/* ----------
75
* Our own local and global variables
@@ -91,6 +90,8 @@ PLpgSQL_function *plpgsql_curr_compile;
91
90
* Local function declarations
92
93
+externvoidplpgsql_yyerror(constchar*s);
94
+
95
staticchar*xlateSqlType(char*name);
96
97