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 b14cd0f commit f9e7ebfCopy full SHA for f9e7ebf
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"("\""[^\"]+"\""|"\'"[^\']+"\'")
@@ -514,7 +513,7 @@ INT_CONSTANT {digit}+
514
513
yy_pop_state();
515
return END_EXEC;
516
}
517
- {INCFILE} {
+ {FILENAME} {
518
memset(commandname,0,sizeof(commandname));
519
com_strcpy(commandname,sizeof(commandname),"INCFILE");
520
yylval.s = com_strdup (yytext);
0 commit comments