···11-with recursive thread as (select at_uri, parent_uri, root_uri, 0 as depth
11+with recursive thread as (select at_uri, parent_uri, root_uri, 1 as depth
22 from posts
33 where parent_uri = $1 and violates_threadgate=FALSE
44 union all
+1-1
parakeet/src/sql/thread_branching.sql
···11-with recursive thread as (select at_uri, parent_uri, root_uri, 0 as depth
11+with recursive thread as (select at_uri, parent_uri, root_uri, 1 as depth
22 from posts
33 where parent_uri = $1
44 and violates_threadgate = FALSE