From 36fee0a1fd7f2aa748398e7d1d7a308079496afe Mon Sep 17 00:00:00 2001 From: parkervg Date: Sun, 23 Jun 2024 11:06:38 -0400 Subject: [PATCH] fix comment --- blendsql/parse/_parse.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/blendsql/parse/_parse.py b/blendsql/parse/_parse.py index 785c30c7..7de69299 100644 --- a/blendsql/parse/_parse.py +++ b/blendsql/parse/_parse.py @@ -184,9 +184,7 @@ def abstracted_table_selects(self) -> Generator[Tuple[str, str], None, None]: if self.node.find(exp.Case): return # Special condition: If... - # 1) We have a `JOIN` clause - # 2) We *only* have an ingredient in the top-level `SELECT` clause - # 3) Our ingredients *only* call a single table + # 1) We *only* have an ingredient in the top-level `SELECT` clause # ... then we should execute entire rest of SQL first and assign to temporary session table. # Example: """SELECT w.title, w."designer ( s )", {{LLMMap('How many animals are in this image?', 'images::title')}} # FROM images JOIN w ON w.title = images.title