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

updated dependencies and cleaned printouts

parent 6ed123a9
No related branches found
No related tags found
No related merge requests found
...@@ -104,6 +104,7 @@ To check if a table exists for a method 'getEmployeeData' with arguments indicat ...@@ -104,6 +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(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)
return table_str != "" return table_str != ""
end end
......
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