#!/usr/bin/env bun /** * Seeds ClickHouse tables for smart-chunking E2E tests. * * Run once manually: * bun run packages/plugin-backfill/src/chunking/e2e/seed.ts * * Requires CLICKHOUSE_HOST/CLICKHOUSE_URL + CLICKHOUSE_PASSWORD env vars. * Creates tables if they don't exist, truncates them, and re-inserts data. */ interface DatasetConfig { name: string; columns: string; orderBy: string; partitionBy: string; generate: () => Record[]; } export declare const datasets: DatasetConfig[]; export {}; //# sourceMappingURL=seed-datasets.script.d.ts.map