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

debusgging printouts

parent d5397b0a
No related branches found
No related tags found
No related merge requests found
...@@ -104,7 +104,7 @@ To check if a table exists for a method 'getEmployeeData' with arguments indicat ...@@ -104,7 +104,7 @@ To check if a table exists for a method 'getEmployeeData' with arguments indicat
This function relies on the implementation of `find_table_name_in_manifest`, which must query a manifest or similar structure to find the corresponding table name based on the provided method name and arguments. The manifest structure and query logic are assumed to be predefined. This function relies on the implementation of `find_table_name_in_manifest`, which must query a manifest or similar structure to find the corresponding table name based on the provided method name and arguments. The manifest structure and query logic are assumed to be predefined.
""" """
function does_table_exist_for_method(conn::MySQL.Connection, method_name::String, arguments_string::String, arguments::Dict) function does_table_exist_for_method(conn::MySQL.Connection, method_name::String, arguments_string::String, arguments::Dict)
println("we get here") println("we get here $method_name, $arguments_string, $arguments")
table_str = find_table_name_in_manifest(conn, method_name, arguments_string, arguments) table_str = find_table_name_in_manifest(conn, method_name, arguments_string, arguments)
println("but not here: $table_str") println("but not here: $table_str")
return table_str != "" return table_str != ""
......
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