From 8d61f54668bba1a73cc1dc2fe13df625001866a7 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 5 Jul 2021 20:27:55 +0100 Subject: Add missing braces --- lib/output/pq/updateDatabase.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lib/output') 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(col[0], tableDef->columns.size() + 1, col[3])); } ct << ")"; -- cgit v1.2.3