summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-07-05 20:27:55 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-07-05 20:27:55 +0100
commit8d61f54668bba1a73cc1dc2fe13df625001866a7 (patch)
tree8da04267ff9d146b13858eb1e26d29315d8ba190
parentModernize namespaces (diff)
downloadmygrate-8d61f54668bba1a73cc1dc2fe13df625001866a7.tar.bz2
mygrate-8d61f54668bba1a73cc1dc2fe13df625001866a7.tar.xz
mygrate-8d61f54668bba1a73cc1dc2fe13df625001866a7.zip
Add missing braces
-rw-r--r--lib/input/mysqlRecordSet.cpp6
-rw-r--r--lib/output/pq/updateDatabase.cpp9
2 files changed, 10 insertions, 5 deletions
diff --git a/lib/input/mysqlRecordSet.cpp b/lib/input/mysqlRecordSet.cpp
index f5d2385..1c2fb07 100644
--- a/lib/input/mysqlRecordSet.cpp
+++ b/lib/input/mysqlRecordSet.cpp
@@ -54,10 +54,12 @@ namespace MyGrate::Input {
case MYSQL_TYPE_MEDIUM_BLOB:
case MYSQL_TYPE_LONG_BLOB:
case MYSQL_TYPE_BLOB:
- if (f.charsetnr == 63)
+ if (f.charsetnr == 63) {
return std::make_unique<ResultDataT<Blob>>(b, f);
- else
+ }
+ else {
return std::make_unique<ResultDataT<std::string_view>>(b, f);
+ }
case MAX_NO_FIELD_TYPES:
case MYSQL_TYPE_BIT:
case MYSQL_TYPE_SET:
diff --git a/lib/output/pq/updateDatabase.cpp b/lib/output/pq/updateDatabase.cpp
index 907ee60..b8e27ba 100644
--- a/lib/output/pq/updateDatabase.cpp
+++ b/lib/output/pq/updateDatabase.cpp
@@ -79,13 +79,16 @@ namespace MyGrate::Output::Pq {
TypeMapper tm;
for (auto col : *cols) {
output::pq::sql::insertColumn::execute(this, col[0], col.currentRow(), table_id);
- if (col.currentRow())
+ if (col.currentRow()) {
ct << ',';
+ }
scprintf<"%? %?">(ct, col[0], tm.map(col[2], scprintf<"%?.%?">(tableName, col[0])));
- if (!col[1])
+ if (!col[1]) {
ct << " not null";
- if (col[3])
+ }
+ if (col[3]) {
ct << " primary key";
+ }
tableDef->columns.push_back(std::make_unique<ColumnDef>(col[0], tableDef->columns.size() + 1, col[3]));
}
ct << ")";