50-output-consistency-stats.sql 1.0 KB

1234567891011121314151617181920212223242526
  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. CREATE TABLE output_consistency_stats (
  10. build_job_id TEXT NOT NULL,
  11. framework TEXT NOT NULL,
  12. count_generated_expressions UINT4 NOT NULL,
  13. count_ignored_expressions UINT4 NOT NULL,
  14. count_executed_queries UINT4 NOT NULL,
  15. count_successful_queries UINT4 NOT NULL,
  16. count_ignored_error_queries UINT4 NOT NULL,
  17. count_failed_queries UINT4 NOT NULL,
  18. count_predefined_queries UINT4 NOT NULL,
  19. count_available_data_types UINT4 NOT NULL,
  20. count_available_ops UINT4 NOT NULL,
  21. count_used_ops UINT4 NOT NULL
  22. );
  23. ALTER TABLE output_consistency_stats OWNER TO qa;
  24. GRANT SELECT, INSERT, UPDATE ON TABLE output_consistency_stats TO "hetzner-ci";