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,17 @@
# name: benchmark/micro/cte/cte.benchmark
# description: Benchmark of CTEs
# group: [cte]
name CTE
group micro
subgroup cte
run
WITH RECURSIVE t(x) AS (
SELECT 1
UNION ALL
SELECT x+1
FROM t
WHERE x < 200000
)
SELECT count(t1), count(t2) FROM t AS t1, t AS t2 WHERE t1.x=t2.x;