should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# name: benchmark/micro/logger/file_handle_log/csv/file_handle_logging_csv.benchmark
# description:
# group: [csv]
name Client Context
group logger
load
CALL enable_logging('FileSystem');
CREATE TABLE test AS select i from range(0,100000000) t(i);
run
copy test to '${BENCHMARK_DIR}/file_handle_logging.csv';
cleanup
CALL truncate_duckdb_logs();

View File

@@ -0,0 +1,12 @@
# name: benchmark/micro/logger/file_handle_log/csv/file_handle_logging_csv_baseline.benchmark
# description:
# group: [csv]
name File Handle Log (parquet, baseline)
group logger
load
CREATE TABLE test AS select i from range(0,100000000) t(i);
run
copy test to '${BENCHMARK_DIR}/file_handle_logging.csv';

View File

@@ -0,0 +1,16 @@
# name: benchmark/micro/logger/file_handle_log/parquet/file_handle_logging_parquet.benchmark
# description:
# group: [parquet]
name Client Context
group logger
load
CALL enable_logging('FileSystem');
CREATE TABLE test AS select i from range(0,100000000) t(i);
run
copy test to '${BENCHMARK_DIR}/file_handle_logging.parquet';
cleanup
CALL truncate_duckdb_logs();

View File

@@ -0,0 +1,12 @@
# name: benchmark/micro/logger/file_handle_log/parquet/file_handle_logging_parquet_baseline.benchmark
# description:
# group: [parquet]
name File Handle Log (parquet, baseline)
group logger
load
CREATE TABLE test AS select i from range(0,100000000) t(i);
run
copy test to '${BENCHMARK_DIR}/file_handle_logging.parquet';