Skip to content
Snippets Groups Projects
Commit 718fc7e0 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Fix bogus pattern for STRING.

parent 7df3bb50
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* *
* Copyright 2000 by PostgreSQL Global Development Group * Copyright 2000 by PostgreSQL Global Development Group
* *
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.5 2000/11/16 05:50:01 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.6 2001/01/24 19:01:31 petere Exp $
*/ */
%{ %{
...@@ -65,7 +65,7 @@ LETTER_OR_DIGIT [A-Za-z_0-9\200-\377] ...@@ -65,7 +65,7 @@ LETTER_OR_DIGIT [A-Za-z_0-9\200-\377]
ID {LETTER}{LETTER_OR_DIGIT}* ID {LETTER}{LETTER_OR_DIGIT}*
UNQUOTED_STRING {LETTER}({LETTER_OR_DIGIT}|[-._:/])* UNQUOTED_STRING {LETTER}({LETTER_OR_DIGIT}|[-._:/])*
STRING \'([^'"\n]|\\.)*\' STRING \'([^'\n]|\\.)*\'
%% %%
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment