Recursive CTEs work only with Analyzer

This commit is contained in:
Dmitry Novik 2024-11-28 12:44:34 +01:00 committed by GitHub
parent 6721ab1051
commit 3f9a89c118
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,7 @@
-- https://www.philipzucker.com/sql_graph_csp/
set enable_analyzer = 1;
WITH RECURSIVE digits AS (
SELECT 0 AS digit
UNION ALL