1
0
Fork 0

changed keywords

This commit is contained in:
Jan Steemann 2014-06-10 15:42:05 +02:00
parent 43600f712f
commit 7e181d0bfa
2 changed files with 2 additions and 7 deletions

View File

@ -71,7 +71,6 @@ void Ahuacatlerror (YYLTYPE* locp, TRI_aql_context_t* const context, const char*
%token T_DESC "DESC keyword"
%token T_IN "IN keyword"
%token T_INTO "INTO keyword"
%token T_FROM "FROM keyword"
%token T_IGNORE "IGNORE hint"
%token T_REMOVE "REMOVE command"
@ -440,7 +439,7 @@ return_statement:
;
remove_statement:
T_REMOVE expression T_FROM T_STRING {
T_REMOVE expression T_IN T_STRING {
TRI_aql_node_t* coll;
TRI_aql_node_t* node;
@ -462,7 +461,7 @@ remove_statement:
ABORT_OOM
}
}
| T_REMOVE T_IGNORE expression T_FROM T_STRING {
| T_REMOVE T_IGNORE expression T_IN T_STRING {
TRI_aql_node_t* coll;
TRI_aql_node_t* node;

View File

@ -96,10 +96,6 @@
return T_INTO;
}
(?i:FROM) {
return T_FROM;
}
(?i:REMOVE) {
return T_REMOVE;
}