1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # 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.
- version: 2
- sources:
- - name: loadgen
- schema: public_loadgen
- tables:
- - name: sales
- data_tests:
- - makes_progress
- - name: sales_progress
- data_tests:
- - makes_progress
- - name: sales_large
- # TODO: Reenable once we have the index for sales_large again, currently fails to rehydrate
- #data_tests:
- # - makes_progress
- - name: sales_large_progress
- data_tests:
- - makes_progress
- - name: product
- - name: product_category
- - name: product_tbl
- - name: product_category_tbl
- - name: sales_tbl
- - name: sales_large_tbl
- models:
- - name: sales_product_product_category
- data_tests:
- - makes_progress
- - name: sales_large_product_product_category
- data_tests:
- - makes_progress
|