projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ecea23d
)
Allow PL/pgSQL accept non ascii identifiers
author
Tatsuo Ishii
<
[email protected]
>
Fri, 15 Sep 2000 12:08:56 +0000
(12:08 +0000)
committer
Tatsuo Ishii
<
[email protected]
>
Fri, 15 Sep 2000 12:08:56 +0000
(12:08 +0000)
src/pl/plpgsql/src/scan.l
patch
|
blob
|
blame
|
history
diff --git
a/src/pl/plpgsql/src/scan.l
b/src/pl/plpgsql/src/scan.l
index 8887050c064371ab117af961e0fe35da511264e5..b8c76581566d5aa398142a79466f1ecbb689a5c8 100644
(file)
--- a/
src/pl/plpgsql/src/scan.l
+++ b/
src/pl/plpgsql/src/scan.l
@@
-48,8
+48,8
@@
static void plpgsql_input(char *buf, int *result, int max);
#define YY_INPUT(buf,res,max) plpgsql_input(buf, &res, max)
%}
-WS
[[:alpha:]_
"]
-WC
[[:alnum:]_
"]
+WS
[\200-\377_A-Za-z
"]
+WC
[\200-\377_A-Za-z0-9
"]
%x IN_STRING IN_COMMENT