diff options
Diffstat (limited to 'src/interfaces/ecpg/preproc/pgc.l')
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index cc6bbcb3bdc..ed7b37478c3 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -306,6 +306,7 @@ sql [sS][qQ][lL] return (yytext[0]); } <SQL>{self} { return (yytext[0]); } +<SQL>"->" { return S_STRUCTPOINTER; } <SQL>{operator}/-[\.0-9] { yylval.str = strdup((char*)yytext); return (Op); |