github-3963.slt 834 B

1234567891011121314151617181920212223242526272829303132
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. # Regression test for https://github.com/MaterializeInc/database-issues/issues/3963
  10. simple conn=mz_system,user=mz_system
  11. ALTER SYSTEM SET enable_rbac_checks TO false;
  12. ----
  13. COMPLETE 0
  14. statement ok
  15. DROP CLUSTER quickstart CASCADE
  16. statement ok
  17. CREATE CLUSTER test
  18. REPLICAS (replica_a (SIZE '1'))
  19. statement ok
  20. SET CLUSTER = 'test'
  21. # Give read holds a chance to be updated
  22. statement ok
  23. SELECT mz_unsafe.mz_sleep(2)
  24. statement ok
  25. DROP CLUSTER test CASCADE