You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/db/sqltest/tests/history/hosts.sql

39 lines
1.4 KiB

-- Copyright (c) HashiCorp, Inc.
-- SPDX-License-Identifier: BUSL-1.1
begin;
select plan(15);
-- Verify the trigger functions exist and are declared properly
select has_function('insert_host_history_subtype');
select volatility_is('insert_host_history_subtype', 'volatile');
select isnt_strict('insert_host_history_subtype');
select has_function('delete_host_history_subtype');
select volatility_is('delete_host_history_subtype', 'volatile');
select isnt_strict('delete_host_history_subtype');
select has_trigger('static_host_hst', 'insert_host_history_subtype');
select has_trigger('static_host_hst', 'delete_host_history_subtype');
select fk_ok('static_host_hst', 'history_id', 'host_history_base' , 'history_id');
select has_trigger('host_plugin_host_hst', 'insert_host_history_subtype');
select has_trigger('host_plugin_host_hst', 'delete_host_history_subtype');
select fk_ok('host_plugin_host_hst', 'history_id', 'host_history_base' , 'history_id');
select is(count(*), 1::bigint) from no_host_history;
select fk_ok('no_host_history', 'history_id', 'host_history_base' , 'history_id');
select results_eq(
'select '
'(select count(*) from static_host_hst) + '
'(select count(*) from host_plugin_host_hst) + '
'(select count(*) from no_host_history)',
'select count(*) from host_history_base'
);
select * from finish();
rollback;