From 290bd317fb63f04b3607f1650f6f96cce9bdee7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Jani?= Date: Wed, 27 Oct 2021 09:49:54 +0200 Subject: [PATCH] Update documentation for TSVWithNames parsing The documentation of the format TabSeparatedWithNames stated during parsing the first row (header) is ignored. It is not true anymore, the header is parsed, and the column position is determined from the header. --- docs/en/interfaces/formats.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/en/interfaces/formats.md b/docs/en/interfaces/formats.md index d0e5c44b4f7..8fc031834be 100644 --- a/docs/en/interfaces/formats.md +++ b/docs/en/interfaces/formats.md @@ -164,8 +164,7 @@ This format is also available under the name `TSVRaw`. ## TabSeparatedWithNames {#tabseparatedwithnames} Differs from the `TabSeparated` format in that the column names are written in the first row. -During parsing, the first row is completely ignored. You can’t use column names to determine their position or to check their correctness. -(Support for parsing the header row may be added in the future.) +During parsing, the first row is expected to contain the column names. You can use column names to determine their position and to check their correctness. This format is also available under the name `TSVWithNames`.