Yee
Yee
Thanks @xuhuijun Could you add some test data in the examples folder to test the feature ? In addition, don't forget to sign the CLA by click the badge in...
Hi @mbande Sorry to reply so late. If you have any issues later, welcome to raise your problem in [our forum](https://discuss.nebula-graph.io/). Your problem seems that you don't configure the `schema.vertex`...
> Acturally I expect importor itself can define some type conversion, as re-generate the data file is time consuming. Type conversion meaning what exactly? Do you want importer to support...
现在还不支持同一个 schema 读取多个文件。目前还只能逐个文件来配置。后期考虑一个文件夹下的所有相同schema 文件的导入。
We will support this feature recently. And the implementation maybe follow the answer of this question in stackoverflow: https://stackoverflow.com/questions/2675323/mysql-load-null-values-from-csv-data @zfanswer if you have more ideas and question about this feature,...
This PR has been included in docker v2-nightly image, does the memory watermark have any problems in docker container ?
hi @goc Could you describe your problem in detail?
I test the following compile command for g++ 9.2.0 and don't get any errors: ``` /opt/vesoft/toolset/clang/10.0.0/bin/g++ -DNEBULA_HOME=/home/yee.yi/Workspace/vesoft/nebula -DS2_USE_GFLAGS -DS2_USE_GLOG -D__STDC_FORMAT_MACROS -I/home/yee.yi/Workspace/vesoft/nebula/src -I/home/yee.yi/Workspace/vesoft/nebula/cmake-build-gcc/src -isystem /opt/vesoft/third-party/ 3.0/include -isystem /opt/vesoft/third-party/3.0/include/breakpad -g -Wall -Wextra...
> @yixinglu , any chance we could bypass this lint error, please? > > ``` > .linters/cpp/cpplint.py src/common/function/FunctionManager.cpp 2>&1 | grep error > src/common/function/FunctionManager.cpp:2047: Small and focused functions are preferred:...
another test case: ``` match (v:player) where id(v)=='Tim Duncan' with v.player.name AS name match (v:player)-[]-(v2) where v.player.name IN name return v2; ```