Open
Description
Summary
Count:
mysql> select count() from @lake (pattern => '.*parquet');
+----------+
| count() |
+----------+
| 10000000 |
+----------+
explain:
mysql> explain select * from @lake (pattern => '.*parquet');
+--------------------------------------------------+
| explain |
+--------------------------------------------------+
| TableScan |
| ├── table: default.system.read_parquet |
| ├── read rows: 10000000 |
| ├── read bytes: 1552567904 |
| ├── partitions total: 9766 |
| ├── partitions scanned: 9766 |
| ├── push downs: [filters: [], limit: NONE] |
| └── estimated rows: 0.00 |
+--------------------------------------------------+