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/pagination/storage_bucket.sql

21 lines
461 B

-- Copyright (c) HashiCorp, Inc.
-- SPDX-License-Identifier: BUSL-1.1
begin;
select plan(2);
select has_index(
'storage_plugin_storage_bucket',
'storage_plugin_storage_bucket_create_time_public_id_idx',
array['create_time', 'public_id']
);
select has_index(
'storage_plugin_storage_bucket',
'storage_plugin_storage_bucket_update_time_public_id_idx',
array['update_time', 'public_id']
);
select * from finish();
rollback;