merger improvements

This commit is contained in:
2026-03-15 03:24:00 -04:00
parent d4347072f2
commit 6632570712
7 changed files with 86 additions and 3302 deletions

View File

@ -69,9 +69,6 @@ impl SqlCompiler {
if let Some(items) = &schema.obj.items {
if let Some(ref_id) = &items.obj.r#ref {
if let Some(type_def) = self.db.types.get(ref_id) {
if is_stem_query && depth > 0 {
return Ok(("".to_string(), "abort".to_string()));
}
return self.compile_entity_node(
items,
type_def,
@ -115,9 +112,6 @@ impl SqlCompiler {
}
if let Some(type_def) = resolved_type {
if is_stem_query && depth > 0 {
return Ok(("".to_string(), "abort".to_string()));
}
return self.compile_entity_node(
schema,
type_def,