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
8be8b094
Commit
8be8b094
authored
Feb 05, 2019
by
Steven Murray
Browse files
Added RdbmsCatalogue::getTableNames()
parent
db0b6fcb
Changes
2
Hide whitespace changes
Inline
Side-by-side
catalogue/RdbmsCatalogue.cpp
View file @
8be8b094
...
...
@@ -5501,6 +5501,14 @@ void RdbmsCatalogue::ping() {
}
}
//------------------------------------------------------------------------------
// getTableNames
//------------------------------------------------------------------------------
std
::
list
<
std
::
string
>
RdbmsCatalogue
::
getTableNames
()
const
{
auto
conn
=
m_connPool
.
getConn
();
return
conn
.
getTableNames
();
}
//------------------------------------------------------------------------------
// checkTapeWrittenFilesAreSet
//------------------------------------------------------------------------------
...
...
catalogue/RdbmsCatalogue.hpp
View file @
8be8b094
...
...
@@ -563,6 +563,15 @@ public:
*/
void
ping
()
override
;
/**
* Returns the names of all the tables in the database schema in alphabetical
* order.
*
* @return The names of all the tables in the database schema in alphabetical
* order.
*/
std
::
list
<
std
::
string
>
getTableNames
()
const
;
protected:
/**
...
...
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