Update StoragePostgreSQL.cpp

This commit is contained in:
Kseniia Sumarokova 2021-06-16 12:11:31 +03:00 committed by GitHub
parent 8a7af3bc23
commit 661524e3d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -151,7 +151,7 @@ public:
}
}
inserter->stream.write_values(row); // NOLINT
inserter->stream.write_values(row);
}
}
@ -273,7 +273,7 @@ private:
StreamTo(pqxx::connection & connection, pqxx::table_path table_, Names columns_)
: tx(connection)
, columns(std::move(columns_))
, stream(pqxx::stream_to::raw_table(tx, connection.quote_table(table_), connection.quote_columns(columns))) // NOLINT
, stream(pqxx::stream_to::raw_table(tx, connection.quote_table(table_), connection.quote_columns(columns)))
{
}