v.23.10New Feature
Support for Npy Format in ClickHouse
Support forNpyformat.SELECT * FROM file('example_array.npy', Npy). #55982 (Yarik Briukhovetskyi).
Why it matters
This feature enables users to seamlessly read and query data stored in NumPy's .npy binary array format without external conversion, simplifying data integration workflows especially for users working with scientific and machine learning data.How to use it
Use thefile table function with the Npy format specified to query .npy files directly. For example:SELECT * FROM file('example_array.npy', Npy)