You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
clang format apply
This commit is contained in:
@ -16,9 +16,8 @@
|
||||
MA 02110-1301, USA. */
|
||||
|
||||
/*
|
||||
* $Id: ddlcleanup.cpp 967 2009-10-15 13:57:29Z rdempsey $
|
||||
*/
|
||||
|
||||
* $Id: ddlcleanup.cpp 967 2009-10-15 13:57:29Z rdempsey $
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
@ -57,31 +56,28 @@ namespace fs = boost::filesystem;
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
|
||||
void usage()
|
||||
{
|
||||
cout << "Usage: ddlcleanup" << endl;
|
||||
}
|
||||
cout << "Usage: ddlcleanup" << endl;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int c;
|
||||
int c;
|
||||
|
||||
while ((c = getopt(argc, argv, "h")) != EOF)
|
||||
switch (c)
|
||||
{
|
||||
case 'h':
|
||||
case '?':
|
||||
default:
|
||||
usage();
|
||||
return (c == 'h' ? 0 : 1);
|
||||
break;
|
||||
}
|
||||
while ((c = getopt(argc, argv, "h")) != EOF)
|
||||
switch (c)
|
||||
{
|
||||
case 'h':
|
||||
case '?':
|
||||
default:
|
||||
usage();
|
||||
return (c == 'h' ? 0 : 1);
|
||||
break;
|
||||
}
|
||||
|
||||
return ddlcleanuputil::ddl_cleanup();
|
||||
return ddlcleanuputil::ddl_cleanup();
|
||||
}
|
||||
|
||||
// vim:ts=4 sw=4:
|
||||
|
||||
|
Reference in New Issue
Block a user