Skip to content

Commit

Permalink
spacemanager: Fix syntax error in SQL expression
Browse files Browse the repository at this point in the history
Target: trunk
Require-notes: no
Require-book: no
Acked-by: Paul Millar <paul.millar@desy.de>
Acked-by: Dmitry Litvtintsev <litvinse@fnal.gov>
Patch: http://rb.dcache.org/r/6437/
  • Loading branch information
gbehrmann committed Jan 21, 2014
1 parent 76ead5a commit aa01662
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -736,7 +736,7 @@ public void updateFile(String voGroup,
" ORDER BY lg.freespaceinbytes-lg.reservedspaceinbytes DESC ";

private static final String selectLinkGroupIdPart1 =
"SELECT lg.id FROM " + LINKGROUP_TABLE + "lg, " + LINKGROUP_VO_TABLE + " lgvo " +
"SELECT lg.id FROM " + LINKGROUP_TABLE + " lg, " + LINKGROUP_VO_TABLE + " lgvo " +
"WHERE lg.id = lgvo.linkGroupId AND lg.lastUpdateTime >= ? ";

private static final String selectLinkGroupInfoPart1 =
Expand Down

0 comments on commit aa01662

Please sign in to comment.