mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +08:00
add support for LIMIT clause in SQL engine
This commit is contained in:
@@ -45,12 +45,14 @@ null { return NUL; }
|
||||
(<=) { return LTEQ; }
|
||||
(>=) { return GTEQ; }
|
||||
like { return LIKE; }
|
||||
limit { return LIMIT; }
|
||||
[ \t\r] ;
|
||||
|
||||
\"[^"]*\"\" {
|
||||
yyless(yyleng-1);
|
||||
yymore();
|
||||
}
|
||||
|
||||
\"[^"]*\" {
|
||||
int ip, op, ilen;
|
||||
ilen = strlen(yytext);
|
||||
|
||||
Reference in New Issue
Block a user