# HG changeset patch # User František Kučera # Date 1532206969 -7200 # Node ID 7d4525147bf78c44c22d08489ff41d9bbad1ca09 # Parent 2ee70261bd9b974b97927903d0c4b71f76e39317 multiple records, no nullptr diff -r 2ee70261bd9b -r 7d4525147bf7 relpipe-in-cli.cpp --- a/relpipe-in-cli.cpp Sat Jul 21 22:38:21 2018 +0200 +++ b/relpipe-in-cli.cpp Sat Jul 21 23:02:49 2018 +0200 @@ -6,21 +6,15 @@ int main(int argc, char** argv) { std::shared_ptr writer(relpipe::writer::RelationalWriter::create(std::cout)); - if (writer.get() == nullptr) { - std::cout << "writer.get() == nullptr" << std::endl; - } else { - writer->startRelation(L"my_first_table", // - { - {L"a1", L"string"}, - {L"a2", L"string"}, - {L"a3", L"string"} - }, true); - writer->writeRecord({ - L"1.1", L"1.2", L"1.3", - L"2.1", L"2.2", L"2.3", - L"3.1", L"3.2", L"3.3", - }); - return 0; - } + writer->startRelation(L"my_first_table",{ + {L"a1", L"string"}, + {L"a2", L"string"}, + {L"a3", L"string"} + }, true); + + writer->writeRecord({L"1.1", L"1.2", L"1.3"}); + writer->writeRecord({L"2.1", L"2.2", L"2.3"}); + writer->writeRecord({L"3.1", L"3.2", L"3.3"}); + + return 0; } -