Skip to content

Commit cda964b

Browse files
fix(materialize): correct docstring and remove deprecated flag
- Update create_source docstring to reflect actual supported load generators (AUCTION, TPCH, MARKETING only; KEY VALUE and DATUMS removed in v26) - Remove deprecated enable_create_table_from_source flag from compose.yaml (flag is for v26 compatibility, tests should work with default behavior)
1 parent afad862 commit cda964b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ services:
565565
environment:
566566
MZ_LOG: info
567567
MZ_TELEMETRY: "false"
568-
MZ_SYSTEM_PARAMETER_DEFAULT: "max_tables=1000;enable_load_generator_counter=true;enable_create_table_from_source=true"
568+
MZ_SYSTEM_PARAMETER_DEFAULT: "max_tables=1000"
569569
healthcheck:
570570
test: ["CMD", "curl", "-f", "localhost:6878/api/readyz"]
571571
interval: 1s

ibis/backends/materialize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ def create_source(
731731
"""Create a source in Materialize.
732732
733733
This method supports creating sources from various systems including:
734-
- Load generators (AUCTION, TPCH, MARKETING, KEY VALUE, DATUMS)
734+
- Load generators (AUCTION, TPCH, MARKETING)
735735
- Kafka/Redpanda message brokers
736736
- PostgreSQL, MySQL, SQL Server (CDC)
737737
- Webhooks

0 commit comments

Comments
 (0)