2017-02-03 03:12:58 +08:00
|
|
|
CREATE TABLE test_hash (a int, b text);
|
|
|
|
INSERT INTO test_hash VALUES (1, 'one');
|
|
|
|
CREATE INDEX test_hash_a_idx ON test_hash USING hash (a);
|
|
|
|
|
|
|
|
\x
|
|
|
|
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 0));
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 1));
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 2));
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 3));
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 4));
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 5));
|
|
|
|
SELECT hash_page_type(get_raw_page('test_hash_a_idx', 6));
|
|
|
|
|
|
|
|
|
2021-01-19 17:28:05 +08:00
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', -1);
|
2017-02-03 03:12:58 +08:00
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 0);
|
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 1);
|
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 2);
|
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 3);
|
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 4);
|
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 5);
|
2021-01-19 17:28:05 +08:00
|
|
|
SELECT * FROM hash_bitmap_info('test_hash_a_idx', 6);
|
2017-02-03 03:12:58 +08:00
|
|
|
|
|
|
|
|
2017-02-04 00:06:41 +08:00
|
|
|
SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
|
|
|
|
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
|
|
|
|
hash_metapage_info(get_raw_page('test_hash_a_idx', 0));
|
2017-02-03 03:12:58 +08:00
|
|
|
|
2017-02-04 00:06:41 +08:00
|
|
|
SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
|
|
|
|
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
|
|
|
|
hash_metapage_info(get_raw_page('test_hash_a_idx', 1));
|
2017-02-03 03:12:58 +08:00
|
|
|
|
2017-02-04 00:06:41 +08:00
|
|
|
SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
|
|
|
|
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
|
|
|
|
hash_metapage_info(get_raw_page('test_hash_a_idx', 2));
|
2017-02-03 03:12:58 +08:00
|
|
|
|
2017-02-04 00:06:41 +08:00
|
|
|
SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
|
|
|
|
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
|
|
|
|
hash_metapage_info(get_raw_page('test_hash_a_idx', 3));
|
2017-02-03 03:12:58 +08:00
|
|
|
|
2017-02-04 00:06:41 +08:00
|
|
|
SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
|
|
|
|
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
|
|
|
|
hash_metapage_info(get_raw_page('test_hash_a_idx', 4));
|
|
|
|
|
|
|
|
SELECT magic, version, ntuples, bsize, bmsize, bmshift, maxbucket, highmask,
|
|
|
|
lowmask, ovflpoint, firstfree, nmaps, procid, spares, mapp FROM
|
|
|
|
hash_metapage_info(get_raw_page('test_hash_a_idx', 5));
|
|
|
|
|
|
|
|
SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
|
|
|
|
hasho_bucket, hasho_flag, hasho_page_id FROM
|
|
|
|
hash_page_stats(get_raw_page('test_hash_a_idx', 0));
|
|
|
|
|
|
|
|
SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
|
|
|
|
hasho_bucket, hasho_flag, hasho_page_id FROM
|
|
|
|
hash_page_stats(get_raw_page('test_hash_a_idx', 1));
|
|
|
|
|
|
|
|
SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
|
|
|
|
hasho_bucket, hasho_flag, hasho_page_id FROM
|
|
|
|
hash_page_stats(get_raw_page('test_hash_a_idx', 2));
|
|
|
|
|
|
|
|
SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
|
|
|
|
hasho_bucket, hasho_flag, hasho_page_id FROM
|
|
|
|
hash_page_stats(get_raw_page('test_hash_a_idx', 3));
|
|
|
|
|
|
|
|
SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
|
|
|
|
hasho_bucket, hasho_flag, hasho_page_id FROM
|
|
|
|
hash_page_stats(get_raw_page('test_hash_a_idx', 4));
|
|
|
|
|
|
|
|
SELECT live_items, dead_items, page_size, hasho_prevblkno, hasho_nextblkno,
|
|
|
|
hasho_bucket, hasho_flag, hasho_page_id FROM
|
|
|
|
hash_page_stats(get_raw_page('test_hash_a_idx', 5));
|
2017-02-03 03:12:58 +08:00
|
|
|
|
|
|
|
SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 0));
|
|
|
|
SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 1));
|
|
|
|
SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 2));
|
|
|
|
SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 3));
|
|
|
|
SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 4));
|
|
|
|
SELECT * FROM hash_page_items(get_raw_page('test_hash_a_idx', 5));
|
|
|
|
|
|
|
|
|
|
|
|
DROP TABLE test_hash;
|