From 43f322ea2fc1f34208e403da1a7702fc5dcb7fd6 Mon Sep 17 00:00:00 2001 From: David Hall Date: Tue, 30 Jan 2018 16:19:17 -0600 Subject: [PATCH] MCOL-962 formating --- dbcon/mysql/ha_calpont_impl.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dbcon/mysql/ha_calpont_impl.cpp b/dbcon/mysql/ha_calpont_impl.cpp index 6f5204308..3eb5a20ab 100755 --- a/dbcon/mysql/ha_calpont_impl.cpp +++ b/dbcon/mysql/ha_calpont_impl.cpp @@ -1824,7 +1824,7 @@ __declspec(dllexport) #endif // Return 1 if system is ready for reads or 0 if not. long long mcssystemready(UDF_INIT* initid, UDF_ARGS* args, - char* is_null, char* error) + char* is_null, char* error) { long long rtn = 0; Oam oam; @@ -1853,7 +1853,7 @@ __declspec(dllexport) #endif my_bool mcssystemready_init(UDF_INIT* initid, UDF_ARGS* args, char* message) { - return 0; + return 0; } #ifdef _MSC_VER @@ -1868,17 +1868,17 @@ __declspec(dllexport) #endif // Return non-zero if system is read only; 0 if writeable long long mcssystemreadonly(UDF_INIT* initid, UDF_ARGS* args, - char* is_null, char* error) + char* is_null, char* error) { long long rtn = 0; DBRM dbrm(true); try { - if (dbrm.getSystemSuspended()) - { - rtn = 1; - } + if (dbrm.getSystemSuspended()) + { + rtn = 1; + } if (dbrm.isReadWrite()) // Returns 0 for writable, 5 for read only { rtn = 2; @@ -1897,7 +1897,7 @@ __declspec(dllexport) #endif my_bool mcssystemreadonly_init(UDF_INIT* initid, UDF_ARGS* args, char* message) { - return 0; + return 0; } #ifdef _MSC_VER