-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
[doc] cypher v.s. ngql add query result #1862
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* fix meta would crash in multiple replica when build plan failed * add error log
Implement the following features: * space level create space my_space (partition_num = 10, replica_factor = 1, charset = utf8, collate = utf8_bin); create space my_space (partition_num = 10, replica_factor = 1, charset = utf8); create space my_space (partition_num = 10, replica_factor = 1, collate = utf8_bin); create space my_space (partition_num = 10, replica_factor = 1); show create space my_space; desc space my_space; * show charset; * show collation;
* Lookup benchmark * To optimize the lookup benckmark * all compact before index can * improve benchmark * Updated comments Co-authored-by: dangleptr <37216992+dangleptr@users.noreply.github.com>
Co-authored-by: dangleptr <37216992+dangleptr@users.noreply.github.com>
Co-authored-by: dangleptr <37216992+dangleptr@users.noreply.github.com>
* group-by statement is updated * format updated * minor update Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
* Support bidirectional traverse. * Add basic bidirectional traverse test. * Fix ut. * Add ut for multi edge traverse. * Fix clang compile error. * Address comment. * Adddress @dangleptr's comment. * Address comment. Co-authored-by: laura-ding <48548375+laura-ding@users.noreply.github.com>
Co-authored-by: dangleptr <37216992+dangleptr@users.noreply.github.com>
* modify block cache * fix comment * wum Co-authored-by: dangleptr <37216992+dangleptr@users.noreply.github.com>
Co-authored-by: dangleptr <37216992+dangleptr@users.noreply.github.com>
Fixed an error that the space could not be found when executing multiple statements (use space statements) when executing update vertex/edge. for example: USE issue1827_update;UPDATE VERTEX 100 SET player.age = 31;
* add bidirect * add example bidirect * add semicolon Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
* delete vertices * address laura-ding's comment Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
* Delete DCHECK in SchemaWriter::appendCol and refactor the part of col_types genaration.. * Return error when get rows failed from interim result. * Refactored the feedResult part. * Check if inputs has duplicate column. Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
* Add a return_partly in get, when it is set to true, we can get the keys which exist, and ignore those keys which are not existed. * To implement this, add a tryGet method in KVStore, which return each status of key. * Remove async thread in GetProcessor
whitewum
approved these changes
Mar 4, 2020
amber-moe
approved these changes
Mar 5, 2020
tong-hao
pushed a commit
to tong-hao/nebula
that referenced
this pull request
Jun 1, 2021
yixinglu
added a commit
to yixinglu/nebula
that referenced
this pull request
Jan 31, 2023
* refine AliasType deducing when planning * resolve conflicts Co-authored-by: codesigner <codesigner.huang@vesoft.com> Co-authored-by: Yee <2520865+yixinglu@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
as title