successly execute without destination vertex properties.
(user@xxx) [test_graph]> GO FROM uuid("pin_zhangsan") OVER pin2merchant YIELD $^.pin.pin;
| $^.pin.pin |
| zhangsan
Got 1 rows (Time spent: 3760/4907 us)
fail to execute with destination vertex properties.
(user@xxx) [test_graph]> GO FROM uuid("pin_zhangsan") OVER pin2merchant YIELD $^.pin.pin, $$.merchant.merchantNo;
E1107 10:40:15.923456 36480 GraphClient.cpp:85] Thrift rpc call failed: Channel got EOF. Check for server hitting connection limit, server connection idle timeout, and server crashes.
[ERROR (-3)]:
Storage: /var/lib/systemd/coredump/core.nebula-graphd.0.99b6162866bb4e27a1237ffdd9e2ce32.36079.1573094415000000.lz4
Message: Process 36079 (nebula-graphd) of user 0 dumped core.
Describe the bug(must be provided) Querying the properties of no-existing vertex by Go will end with an error.
How To Reproduce(must be provided)
(user@xxx) [test_graph]> show tags;
| Name |
| merchant |
| pin |
(user@xxx) [test_graph]> show edges;
| Name |
| pin2merchant |
(user@xxx) [test_graph]> INSERT VERTEX pin(pin) VALUES uuid("pin_zhangsan"):("zhangsan"); Execution succeeded (Time spent: 3532/4264 us)
(user@xxx) [test_graph]> INSERT EDGE pin2merchant() VALUES uuid("pin_zhangsan") -> uuid("not_exist_vertex_id"):(); Execution succeeded (Time spent: 3488/4290 us)
successly execute without destination vertex properties.
(user@xxx) [test_graph]> GO FROM uuid("pin_zhangsan") OVER pin2merchant YIELD $^.pin.pin;
| $^.pin.pin |
| zhangsan
Got 1 rows (Time spent: 3760/4907 us)
fail to execute with destination vertex properties.
(user@xxx) [test_graph]> GO FROM uuid("pin_zhangsan") OVER pin2merchant YIELD $^.pin.pin, $$.merchant.merchantNo; E1107 10:40:15.923456 36480 GraphClient.cpp:85] Thrift rpc call failed: Channel got EOF. Check for server hitting connection limit, server connection idle timeout, and server crashes. [ERROR (-3)]:
F1107 10:40:15.391747 36101 GoExecutor.cpp:972] Check failed: false
Storage: /var/lib/systemd/coredump/core.nebula-graphd.0.99b6162866bb4e27a1237ffdd9e2ce32.36079.1573094415000000.lz4 Message: Process 36079 (nebula-graphd) of user 0 dumped core.