Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FACT Unified Data IO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FACT
FACT Utils
FACT Unified Data IO
Commits
dbc8cb00
Commit
dbc8cb00
authored
1 year ago
by
Riccardo Boero
Browse files
Options
Downloads
Patches
Plain Diff
debusgging printouts
parent
ed77bda4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/manifestIO.jl
+2
-1
2 additions, 1 deletion
src/manifestIO.jl
with
2 additions
and
1 deletion
src/manifestIO.jl
+
2
−
1
View file @
dbc8cb00
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment