Manh Dinh

Results 5 issues of Manh Dinh

In ```ExpressionVisitor::isContant```, we are using this code to check if an expression has children or not. ``` if (expression.getNumChildren() == 0) { return expression.expressionType == ExpressionType::LITERAL; } ``` It failed...

I encountered this assertion failure when using KuzuPreparedStatement from Java API with parameterized queries where a parameter appears multiple times. ``` what(): Assertion failed in file "/home/runner/actions-runner/_work/kuzu/kuzu/src/common/types/value/value.cpp" on line 18:...

bug
apis

I made some temporary changes so that ```LIST``` and ```ARRAY``` can use the same layout. We should remove them after implementing a separate layout for ```ARRAY```. - [ListType](https://github.com/kuzudb/kuzu/pull/3175/files#diff-d80484b6229604f5ff197c3810c4a623ac34bb4f4dc01c86045d57c0d89330a9L448) - [ListVector](https://github.com/kuzudb/kuzu/pull/3175/files#diff-1695809415bf49667a5bfb4b563a2f8bc5f1e35c87cb7b9dc3d6bd6e2b8e796aL152)...

These type combinations in arrow reader (```scanArrowArray```) are missing test coverage: - ```MonthInterval``` - ```DayTimeInterval``` - ```MonthDayNanoInterval``` - ```BLOBView``` - ```ListView``` - ```DenseUnion``` - ```SparseUnion``` - ```RunEndEncoded``` - ```DictionaryEncoded (int8_t,...

testing

I encountered this assertion failure when running some of the [LDBC FinBench](https://github.com/kuzudb/ldbc_finbench_transaction_impls/tree/main/kuzu) write queries ``` what(): Assertion failed in file "/home/runner/actions-runner/_work/kuzu/kuzu/src/storage/store/column_chunk.cpp" on line 367: numValues

bug
apis