Skip to content

Commit 808bdea

Browse files
author
Vyacheslav Brover
committed
TextTable(,,headerP,)
1 parent bf24c2d commit 808bdea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tsv/tsv2insert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace
4646
{
4747

4848

49-
struct ThisApplication : Application
49+
struct ThisApplication final : Application
5050
{
5151
ThisApplication ()
5252
: Application ("Convert a tsv-table into SQL insert statements")

tsv/tsv_join.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace
4646
{
4747

4848

49-
struct ThisApplication : Application
49+
struct ThisApplication final : Application
5050
{
5151
ThisApplication ()
5252
: Application ("Join 2 tsv-tables by identical columns, print the result")

tsv/tsv_test_key.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ struct ThisApplication final : Application
6464
const string keysS = getArg ("keys");
6565

6666

67-
const TextTable tab (fName, noString, 10000); // PAR
67+
const TextTable tab (fName, noString, true, 10000); // PAR
6868
tab. qc ();
6969

7070
const StringVector keysVec (keysS, ',', true);

0 commit comments

Comments
 (0)