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/initdb.d/02_wtt_load.sql

35 lines
780 B

-- Copyright (c) HashiCorp, Inc.
-- SPDX-License-Identifier: BUSL-1.1
begin;
-- wtt_load populates tables for the given test persona and set of aggregates.
-- Valid personas are:
-- * widgets
--
-- Valid aggregates:
-- * iam
-- * kms
-- * auth
-- * hosts
-- * targets
-- * credentials
-- * sessions
--
-- Note that some aggregates depend on data from other aggretates, so the order
-- that they are passed to this function matters.
create function wtt_load(persona text, variadic aggregates text[]) returns void
as $$
declare
agg text;
q text;
begin
foreach agg in array aggregates
loop
q = format('select _wtt_load_%I_%I()', persona, agg);
execute q;
end loop;
end;
$$ language plpgsql;
commit;