From d2f40144f5f19e62432fb5f42ee5843fd6e124ca Mon Sep 17 00:00:00 2001 From: Yevgeniy Zakharov Date: Sun, 14 Jul 2024 22:19:30 +0500 Subject: [PATCH] fixed whitespaces --- dev/storage_base.h | 6 +++--- include/sqlite_orm/sqlite_orm.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev/storage_base.h b/dev/storage_base.h index 4f76208a8..20a8d93f2 100644 --- a/dev/storage_base.h +++ b/dev/storage_base.h @@ -930,7 +930,7 @@ namespace sqlite_orm { if(ifExists) { ss << " IF EXISTS"; } - ss << streaming_identifier(tableName) << std::flush; + ss << ' ' << streaming_identifier(tableName) << std::flush; perform_void_exec(db, ss.str()); } @@ -940,7 +940,7 @@ namespace sqlite_orm { if(ifExists) { ss << " IF EXISTS"; } - ss << quote_identifier(indexName) << std::flush; + ss << ' ' << quote_identifier(indexName) << std::flush; perform_void_exec(this->get_connection().get(), ss.str()); } @@ -950,7 +950,7 @@ namespace sqlite_orm { if(ifExists) { ss << " IF EXISTS"; } - ss << quote_identifier(triggerName) << std::flush; + ss << ' ' << quote_identifier(triggerName) << std::flush; perform_void_exec(this->get_connection().get(), ss.str()); } diff --git a/include/sqlite_orm/sqlite_orm.h b/include/sqlite_orm/sqlite_orm.h index 35cec13a5..adf7767bd 100644 --- a/include/sqlite_orm/sqlite_orm.h +++ b/include/sqlite_orm/sqlite_orm.h @@ -18561,7 +18561,7 @@ namespace sqlite_orm { if(ifExists) { ss << " IF EXISTS"; } - ss << streaming_identifier(tableName) << std::flush; + ss << ' ' << streaming_identifier(tableName) << std::flush; perform_void_exec(db, ss.str()); } @@ -18571,7 +18571,7 @@ namespace sqlite_orm { if(ifExists) { ss << " IF EXISTS"; } - ss << quote_identifier(indexName) << std::flush; + ss << ' ' << quote_identifier(indexName) << std::flush; perform_void_exec(this->get_connection().get(), ss.str()); } @@ -18581,7 +18581,7 @@ namespace sqlite_orm { if(ifExists) { ss << " IF EXISTS"; } - ss << quote_identifier(triggerName) << std::flush; + ss << ' ' << quote_identifier(triggerName) << std::flush; perform_void_exec(this->get_connection().get(), ss.str()); }