kuzudb / kuzu

Embeddable property graph database management system built for query speed and scalability. Implements Cypher.
https://kuzudb.com/
MIT License
1.07k stars 77 forks source link

Add Implicit Casting from List to Array #3375

Closed mxwli closed 3 weeks ago

mxwli commented 3 weeks ago

Progress on #3248

We've decided not to resolve list literals to arrays, since it's much simpler to just support list -> array implicit casting. As a consequence, implicit casts are now no longer guaranteed to always work.

The mentioned array_cosine_similarity(a.vector, [6.0, 25.0]) call still doesn't work due to a binding error. The corresponding tests are disabled until this is fixed.