Skip to content

Commit

Permalink
1.1.4a2 release, fixing return results numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
george1459 committed Apr 17, 2024
1 parent 88e274c commit 95240ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Package metadata
name = "suql"
version = "1.1.4a1"
version = "1.1.4a2"
description = "Structured and Unstructured Query Language (SUQL) Python API"
author = "Shicheng Liu"
author_email = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/suql/sql_free_text_support/execute_free_text_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ def suql_execute(
logging.basicConfig(level=logging.CRITICAL + 1)

if _parse_standalone_answer(suql) is not None:
return _execute_standalone_answer(suql, source_file_mapping)
return _execute_standalone_answer(suql, source_file_mapping), [], {}

results, column_names, cache = _suql_execute_single(
suql,
Expand Down

0 comments on commit 95240ad

Please sign in to comment.