pub const MAX_SELECT_DEPTH: u32 = 64;Expand description
How deeply query blocks may nest.
SQLite’s own limit is expression depth rather than a separate select depth, but a subquery per level costs a scope, a frame and a compiled subprogram, so the recursion is bounded here where the recursion happens.