GET EXTENT INFO
The GET EXTENT INFO
utility command allows you to retrieve information of specific extents.
Syntax
SELECT get_extent_info(<database_name>, <table_id>, [ column_id ])
Parameters
Parameter |
Description |
---|---|
|
The database within to search for extent |
|
The id of the table related to the extent |
|
The id of a specific extent to search for |
Returns
Parameter |
Description |
---|---|
|
The database within the chunk exists |
|
The id of the table related to the chunk |
|
The id of the column related to the chunk |
|
The id of the chunk |
|
The id of the extent |
|
The size of the extent’s compressed data |
|
The size of the extent’s uncompressed data |
Examples
SELECT get_extent_info(mfg_ldc_lake, 17271948, 143);
Output:
database_name |table_id |column_id |chunk_id |extent_id |compressed_size |uncompressed_size
--------------+---------+----------+---------+----------+----------------+-----------------
mfg_ldc |17271948 |16 |143 |142 |9892 |9892
mfg_ldc |17271948 |17 |143 |142 |8 |39568
Permissions
This utility function requires a SUPERUSER
permission.