We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d7d89c commit 6a878c6Copy full SHA for 6a878c6
ocesql/scanner.l
@@ -75,7 +75,6 @@ yyinput (char *buf, int max_size);
75
JPNWORD [\xA0-\xDF]|([\x81-\x9F\xE0-\xFC][\x40-\x7E\x80-\xFC])
76
DIGIT [0-9]
77
WORD ([A-Za-z\+\-0-9_]|[(]|[)]|[\'])
78
-INCFILE [A-Za-z0-9_\+\-]+
79
FILENAME [A-Za-z0-9_\+\-\.]+
80
STRVALUE ("\""[^\"]*"\""|"\'"[^\']*"\'")
81
HEXVALUE "X"("\""[^\"]+"\""|"\'"[^\']+"\'")
@@ -513,7 +512,7 @@ INT_CONSTANT {digit}+
513
512
yy_pop_state();
514
return END_EXEC;
515
}
516
- {INCFILE} {
+ {FILENAME} {
517
memset(commandname,0,sizeof(commandname));
518
com_strcpy(commandname,sizeof(commandname),"INCFILE");
519
yylval.s = com_strdup (yytext);
0 commit comments