Commit 148f905f authored by Tatsuo Ishii's avatar Tatsuo Ishii

Allow PL/pgSQL accept non ascii identifiers

parent 6ead466e
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* procedural language * procedural language
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/scan.l,v 1.7 2000/09/05 09:02:18 wieck Exp $ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/scan.l,v 1.8 2000/09/15 11:59:40 ishii Exp $
* *
* This software is copyrighted by Jan Wieck - Hamburg. * This software is copyrighted by Jan Wieck - Hamburg.
* *
...@@ -51,8 +51,8 @@ static void plpgsql_input(char *buf, int *result, int max); ...@@ -51,8 +51,8 @@ static void plpgsql_input(char *buf, int *result, int max);
#define YY_NO_UNPUT #define YY_NO_UNPUT
%} %}
WS [[:alpha:]_"] WS [\200-\377_A-Za-z"]
WC [[:alnum:]_"] WC [\200-\377_A-Za-z0-9"]
%x IN_STRING IN_COMMENT %x IN_STRING IN_COMMENT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment