Skip to content
Snippets Groups Projects
Commit 685fe84e authored by Nicola Fulvio Calabria's avatar Nicola Fulvio Calabria
Browse files

minor syntax fix

parent 45cf8717
Branches
No related tags found
No related merge requests found
...@@ -207,7 +207,7 @@ public class FileDAO { ...@@ -207,7 +207,7 @@ public class FileDAO {
// TODO: same problem as get archive file infos // TODO: same problem as get archive file infos
public List<FileInfo> getBranchFileInfos(String rootVosPath, String jobId) { public List<FileInfo> getBranchFileInfos(String rootVosPath, String jobId) {
String sql = "SELECT n.node_id, n.is_public, n.group_read, n.group_write, n.creator_id, n.async_trans, n.fs_path\n" String sql = "SELECT n.node_id, n.is_public, n.group_read, n.group_write, n.creator_id, n.async_trans, n.fs_path,\n"
+ "n.content_type, n.content_encoding, n.content_length, n.content_md5,\n" + "n.content_type, n.content_encoding, n.content_length, n.content_md5,\n"
+ "n.accept_views, n.provide_views, l.location_type, n.path <> n.relative_path AS virtual_parent,\n" + "n.accept_views, n.provide_views, l.location_type, n.path <> n.relative_path AS virtual_parent,\n"
+ "(SELECT user_name FROM users WHERE user_id = n.creator_id) AS username,\n" + "(SELECT user_name FROM users WHERE user_id = n.creator_id) AS username,\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment