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

debusgging printouts

parent ed77bda4
No related branches found
No related tags found
No related merge requests found
...@@ -186,9 +186,10 @@ function find_table_name_in_manifest(conn::MySQL.Connection, method_name::String ...@@ -186,9 +186,10 @@ function find_table_name_in_manifest(conn::MySQL.Connection, method_name::String
WHERE method_name = '$method_name' AND arguments_string = '$arguments_string' AND arguments_dict = '$arguments_dict'; WHERE method_name = '$method_name' AND arguments_string = '$arguments_string' AND arguments_dict = '$arguments_dict';
""" """
result = query_connection(conn, query) result = query_connection(conn, query)
println(result)
# Check if a result was found # Check if a result was found
if !isempty(result) if !isempty(result)
println("but not here: $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