GraphScope icon indicating copy to clipboard operation
GraphScope copied to clipboard

fix(interactive): Fix passing `Array` to stored procedures for interactive.

Open zhanglei1949 opened this issue 1 year ago • 0 comments

Neo4j itself supports stored procedures with variably sized arrays as input, and we have also added support for this feature in this PR. However, currently, we only support C++ procedures that read inputs through their own decoder.

TODO: Enable interactive full pipeline support for variably sized arrays as input.

CALL query([1,2,3]) YIELD *;

where [1,2,3] is parsed as a int array.

Fix #3435

zhanglei1949 avatar Dec 15 '23 09:12 zhanglei1949