hypopg/test/sql/hypo_hash.sql
Julien Rouhaud c93081f35e Add support for hypothetical hash indexes.
Only support such indexes for PostgreSQL 10+, as they were previously not crash
safe.
2021-03-07 19:41:21 +08:00

15 lines
472 B
SQL

-- hypothetical hash indexes, pg10+
-- Remove all the hypothetical indexes if any
SELECT hypopg_reset();
-- Create normal index
SELECT COUNT(*) AS NB
FROM hypopg_create_index('CREATE INDEX ON hypo USING hash (id)');
-- Should use hypothetical index using a regular Index Scan
SELECT COUNT(*) FROM do_explain('SELECT val FROM hypo WHERE id = 1') e
WHERE e ~ 'Index Scan.*<\d+>hash_hypo.*';
-- Deparse the index DDL
SELECT hypopg_get_indexdef(indexrelid) FROM hypopg();