user
06/13/2023, 5:14 AMSELECT country, COUNT(*)
FROM read_parquet('<lakefs://sample/main/lakes.parquet>')
GROUP BY country
ORDER BY COUNT(*)
DESC LIMIT 5;
should probably work for you.
The LAKEFS_OBJECT function was required to access the data, but now you can just use text and specify the data location with lakefs:// scheme.