We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: syntax error, unexpected ',', expecting '}': { create: 'movielens', group : [ { movie: ['title', 'genres'] }, { tag: ['user_id', 'tag', 'movie_id'] }, { rate: ['user_id', 'rate', 'movie_id'] } ], index:'tag'};
The text was updated successfully, but these errors were encountered:
Because each group may have same name of properties, we changed index grammar but README is old. The latest grammar can be write as follows:
index
README
{ create: 'movielens', group: [ {movie: ['title', 'genres']}, {tag: ['user_id', 'tag', 'movie_id'], index: ['tag']}, {rate: ['user_id', 'rate', 'movie_id']} ] };
index should be write in each group.
In gql.y, add index keyword after group seems not implement now:
gql.y
group
creation: '{' KW_CREATE ':' LITERAL_STRING ',' groups '}' { GCreateStmt* createStmt = new GCreateStmt($4, $6); free($4); $$ = MakeNode(NodeType::CreationStatement, createStmt, nullptr); stm._errorCode = ECode_Success; } | '{' KW_CREATE ':' LITERAL_STRING ',' KW_INDEX ':' call_expr '}' { free($4); } ;
But group grammar has changed and you can add index to each group.
Sorry, something went wrong.
No branches or pull requests
Error: syntax error, unexpected ',', expecting '}':
{ create: 'movielens', group : [ { movie: ['title', 'genres'] }, { tag: ['user_id', 'tag', 'movie_id'] }, { rate: ['user_id', 'rate', 'movie_id'] } ], index:'tag'};
The text was updated successfully, but these errors were encountered: