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
213e90ab
Commit
213e90ab
authored
Apr 17, 2021
by
Steven Murray
Browse files
Added missing full stop.
parent
d28a0829
Changes
1
Hide whitespace changes
Inline
Side-by-side
catalogue/DropSchemaCmd.cpp
View file @
213e90ab
...
...
@@ -145,7 +145,7 @@ void DropSchemaCmd::dropDatabaseTables(rdbms::Conn &conn) {
const
auto
tables
=
conn
.
getTableNames
();
if
(
!
tables
.
empty
())
{
throw
exception
::
Exception
(
"Failed to delete all tables. Maybe there is a circular dependency"
);
throw
exception
::
Exception
(
"Failed to delete all tables. Maybe there is a circular dependency
.
"
);
}
}
catch
(
exception
::
Exception
&
ex
)
{
ex
.
getMessage
().
str
(
std
::
string
(
__FUNCTION__
)
+
" failed: "
+
ex
.
getMessage
().
str
());
...
...
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