Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
594f9a4c
Commit
594f9a4c
authored
Dec 03, 2020
by
Cedric Caffy
Browse files
[catalogue] Added an ORDER BY clause in the RdbmsCatalogueGetFileRecycleLogItor.cpp sql query
parent
cae7b773
Changes
1
Hide whitespace changes
Inline
Side-by-side
catalogue/RdbmsCatalogueGetFileRecycleLogItor.cpp
View file @
594f9a4c
...
...
@@ -61,7 +61,8 @@ RdbmsCatalogueGetFileRecycleLogItor::RdbmsCatalogueGetFileRecycleLogItor(
"FROM "
"FILE_RECYCLE_LOG "
"JOIN "
"STORAGE_CLASS ON STORAGE_CLASS.STORAGE_CLASS_ID = FILE_RECYCLE_LOG.STORAGE_CLASS_ID"
;
"STORAGE_CLASS ON STORAGE_CLASS.STORAGE_CLASS_ID = FILE_RECYCLE_LOG.STORAGE_CLASS_ID "
"ORDER BY FILE_RECYCLE_LOG.ARCHIVE_FILE_ID, FILE_RECYCLE_LOG.COPY_NB"
;
m_conn
=
connPool
.
getConn
();
m_stmt
=
m_conn
.
createStmt
(
sql
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment