canary-tables.td 755 B

1234567891011121314151617181920212223
  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. > DROP TABLE IF EXISTS table1 CASCADE;
  10. > CREATE TABLE table1 (f1 INTEGER);
  11. > INSERT INTO table1 SELECT generate_series FROM generate_series(1, 10000);
  12. > CREATE MATERIALIZED VIEW table_view1 AS SELECT COUNT(*) FROM table1;
  13. > CREATE DEFAULT INDEX ON table_view1;
  14. > INSERT INTO table1 SELECT generate_series FROM generate_series(1, 10000);
  15. > SELECT * FROM table_view1;
  16. 20000