From d0605caf4c676bfe905c1b18b860486a7c914a4d Mon Sep 17 00:00:00 2001 From: David Sisson Date: Wed, 7 Aug 2024 16:39:43 -0700 Subject: [PATCH] updated type of treat_first_row_as_header --- proto/substrait/algebra.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/substrait/algebra.proto b/proto/substrait/algebra.proto index 25677e38a..579865712 100644 --- a/proto/substrait/algebra.proto +++ b/proto/substrait/algebra.proto @@ -153,7 +153,7 @@ message ReadRel { uint64 skip_lines = 4; // If true, consume the first unskipped line as names of the columns. // These names are not used elsewhere in the plan. - uint64 treat_first_row_as_header = 5; + bool treat_first_row_as_header = 5; // The character used to escape characters in strings. Backslash is // a common value. Note that a double quote mark can also be used as an // escape character but the external quotes should be removed first.