We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
introduce table function fuse_history, which shows
fuse_history
sth like this:
> select * from fuse_history('default', 'test'); +----------------------------------+----------------------------------+---------------+-------------+-----------+--------------------+------------------+ | snapshot_id | prev_snapshot_id | segment_count | block_count | row_count | uncompressed_bytes | compressed_bytes | +----------------------------------+----------------------------------+---------------+-------------+-----------+--------------------+------------------+ | b5c164e8a1be4a9588c399eed66e1a69 | 6d3c75712c4f45c3b78345b08dc68da2 | xx | xx | xxx | xxx | xxxx | | 6d3c75712c4f45c3b78345b08dc68da2 | 495a906683fe4bdda2549420a9dc2fc4 | xx | xx | xxxxxxxx| xxxxxxx | xxxxxxx | | 495a906683fe4bdda2549420a9dc2fc4 | eaedc47499d041779e6eaf774c650dca | xx | xx | xxxxxxx| xxxxxx | xxxxxx | | eaedc47499d041779e6eaf774c650dca | 13f6d7099f36453da4c983337810075c | xx | xx | xxxxx| xxxx | xxxxx | | 13f6d7099f36453da4c983337810075c | 1a5d74d4a2a94fc48b997089657232b0 | x | x | x | xx | xxx | | 1a5d74d4a2a94fc48b997089657232b0 | 419d90b7af854185a2e4f84eeae06a3a | x | x | x | xx | xxx | | 419d90b7af854185a2e4f84eeae06a3a | NULL | x | x | x | x | xxx | +----------------------------------+----------------------------------+---------------+-------------+-----------+--------------------+------------------+ > select compressed_bytes/block_count as bytes_per_block from fuse_hist('default', 'test') where snapshot_id = 'xxx'; +--------------------+ | bytes_per_block | +--------------------+ | 197846.34782608695 | +--------------------+
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
introduce table function
fuse_history
, which showssth like this:
The text was updated successfully, but these errors were encountered: