Saving recommended updates by the Svelte Gemini agent.
This commit is contained in:
@@ -2141,6 +2141,12 @@ def sql_search_qry_part(
|
||||
def process_node(query_node) -> str:
|
||||
clauses = []
|
||||
|
||||
# Process 'query_string' (Standardized Full-Text Search)
|
||||
if hasattr(query_node, 'query_string') and query_node.query_string:
|
||||
p_name = get_param_name()
|
||||
clauses.append(f"MATCH( default_qry_str ) AGAINST( :{p_name} IN BOOLEAN MODE )")
|
||||
data[p_name] = query_node.query_string
|
||||
|
||||
# Process 'and' filters
|
||||
if hasattr(query_node, 'and_filters') and query_node.and_filters:
|
||||
and_clauses = []
|
||||
|
||||
Reference in New Issue
Block a user