1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- from textwrap import dedent
- from materialize.checks.actions import Testdrive
- from materialize.checks.checks import Check
- class WideRows(Check):
- def initialize(self) -> Testdrive:
- return Testdrive(
- dedent(
- """
- > CREATE TABLE wide_rows (f1 TEXT);
- > CREATE DEFAULT INDEX ON wide_rows;
- > INSERT INTO wide_rows VALUES (REPEAT('a', 16 * 1024 * 1024));
- """
- )
- )
- def manipulate(self) -> list[Testdrive]:
- return [
- Testdrive(dedent(s))
- for s in [
- """
- > INSERT INTO wide_rows VALUES (REPEAT('b', 16 * 1024 * 1024));
- """,
- """
- > INSERT INTO wide_rows SELECT * FROM wide_rows;
- """,
- ]
- ]
- def validate(self) -> Testdrive:
- return Testdrive(
- dedent(
- """
- > SELECT LEFT(f1, 1), SUM(LENGTH(f1)) FROM wide_rows GROUP BY LEFT(f1, 1);
- a 33554432
- b 33554432
- """
- )
- )
- class ManyRows(Check):
- def initialize(self) -> Testdrive:
- return Testdrive(
- dedent(
- """
- > CREATE TABLE many_rows (f1 TEXT);
- > CREATE DEFAULT INDEX ON many_rows;
- > INSERT INTO many_rows SELECT 'a' || generate_series FROM generate_series(1, 1000000);
- """
- )
- )
- def manipulate(self) -> list[Testdrive]:
- return [
- Testdrive(dedent(s))
- for s in [
- """
- > INSERT INTO many_rows SELECT 'b' || generate_series FROM generate_series(1, 1000000);
- """,
- """
- > INSERT INTO many_rows SELECT * FROM many_rows;
- """,
- ]
- ]
- def validate(self) -> Testdrive:
- return Testdrive(
- dedent(
- """
- > SELECT LEFT(f1, 1), COUNT(f1) FROM many_rows GROUP BY LEFT(f1, 1);
- a 2000000
- b 2000000
- """
- )
- )
|