aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2000-09-15 11:59:40 +0000
committerTatsuo Ishii <ishii@postgresql.org>2000-09-15 11:59:40 +0000
commit148f905f4185bbad191bceba5e7a173b38e7d3ba (patch)
tree6b0f3143c648b1204fce16c126e616ec760f132f /src
parent6ead466e10a3f7d4bfed8b293323ce74013ff35e (diff)
downloadpostgresql-148f905f4185bbad191bceba5e7a173b38e7d3ba.tar.gz
postgresql-148f905f4185bbad191bceba5e7a173b38e7d3ba.zip
Allow PL/pgSQL accept non ascii identifiers
Diffstat (limited to 'src')
-rw-r--r--src/pl/plpgsql/src/scan.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpgsql/src/scan.l b/src/pl/plpgsql/src/scan.l
index 4cb7ed86157..2b19039ef07 100644
--- a/src/pl/plpgsql/src/scan.l
+++ b/src/pl/plpgsql/src/scan.l
@@ -4,7 +4,7 @@
* procedural language
*
* 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.
*
@@ -51,8 +51,8 @@ static void plpgsql_input(char *buf, int *result, int max);
#define YY_NO_UNPUT
%}
-WS [[:alpha:]_"]
-WC [[:alnum:]_"]
+WS [\200-\377_A-Za-z"]
+WC [\200-\377_A-Za-z0-9"]
%x IN_STRING IN_COMMENT