Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
VOSpace INAF
vospace-rest
Commits
3ecea878
Commit
3ecea878
authored
Sep 23, 2021
by
Nicola Fulvio Calabria
Browse files
Added fs_path to deleteNode
parent
0456b42b
Pipeline
#2436
passed with stages
in 2 minutes and 30 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/main/java/it/inaf/oats/vospace/persistence/NodeDAO.java
View file @
3ecea878
...
...
@@ -489,7 +489,7 @@ public class NodeDAO {
}
String
insertSql
=
"INSERT INTO deleted_node "
+
"(node_id, parent_path, parent_relative_path, "
+
"(node_id, parent_path, parent_relative_path,
fs_path,
"
+
"name, os_name, tstamp_wrapper_dir, type, location_id, format, "
+
"async_trans, job_id, creator_id, group_read, "
+
"group_write, is_public, quota, content_type, content_encoding, "
...
...
@@ -501,7 +501,7 @@ public class NodeDAO {
+
"USING node p\n"
+
"WHERE n.path <@ p.path AND p.node_id = id_from_vos_path(?)\n"
+
"RETURNING\n"
+
"n.node_id, n.parent_path, n.parent_relative_path, "
+
"n.node_id, n.parent_path, n.parent_relative_path,
n.fs_path,
"
+
"n.name, n.os_name, n.tstamp_wrapper_dir, n.type, n.location_id, n.format, "
+
"n.async_trans, n.job_id, n.creator_id, n.group_read, "
+
"n.group_write, n.is_public, n.quota, n.content_type, n.content_encoding, "
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment