Skip to content
Snippets Groups Projects
Commit ed77bda4 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

debusgging printouts

parent 43f8681f
No related branches found
No related tags found
No related merge requests found
...@@ -188,7 +188,7 @@ function find_table_name_in_manifest(conn::MySQL.Connection, method_name::String ...@@ -188,7 +188,7 @@ function find_table_name_in_manifest(conn::MySQL.Connection, method_name::String
result = query_connection(conn, query) result = query_connection(conn, query)
# Check if a result was found # Check if a result was found
if !isempty(result) && nrow(result) > 0 && :result_table_name in names(result) if !isempty(result)
# Now you're sure the DataFrame has rows and the expected column # Now you're sure the DataFrame has rows and the expected column
return result[1, :result_table_name] return result[1, :result_table_name]
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment