mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Resolve conflicts
This commit is contained in:
parent
d2017a63b1
commit
1c783ed88a
@ -181,15 +181,10 @@ bool JSONCompactEachRowFormatReader::parseRowEndWithDiagnosticInfo(WriteBuffer &
|
||||
return true;
|
||||
}
|
||||
|
||||
JSONCompactEachRowRowSchemaReader::JSONCompactEachRowRowSchemaReader(ReadBuffer & in_, bool with_names_, bool with_types_, bool yield_strings_, const FormatSettings & format_settings_)
|
||||
JSONCompactEachRowRowSchemaReader::JSONCompactEachRowRowSchemaReader(
|
||||
ReadBuffer & in_, bool with_names_, bool with_types_, bool yield_strings_, const FormatSettings & format_settings_)
|
||||
: FormatWithNamesAndTypesSchemaReader(
|
||||
in_,
|
||||
format_settings_
|
||||
with_names_,
|
||||
with_types_,
|
||||
&reader,
|
||||
nullptr,
|
||||
format_settings_.json.read_bools_as_numbers)
|
||||
in_, format_settings_, with_names_, with_types_, &reader, nullptr, format_settings_.json.read_bools_as_numbers)
|
||||
, reader(in_, yield_strings_, format_settings_)
|
||||
{
|
||||
}
|
||||
|
@ -75,11 +75,11 @@ c Array(Nullable(Float64))
|
||||
TSKV
|
||||
a Nullable(Float64)
|
||||
b Nullable(String)
|
||||
c Array(Nullable(Float64))
|
||||
1 s1 \N
|
||||
c Array(Nullable(Float64))
|
||||
1 s1 []
|
||||
2 } [2]
|
||||
\N \N \N
|
||||
\N \N \N
|
||||
\N \N []
|
||||
\N \N []
|
||||
\N \N [3]
|
||||
Values
|
||||
c1 Nullable(Float64)
|
||||
|
@ -1,8 +1,8 @@
|
||||
a Nullable(Float64)
|
||||
b Nullable(String)
|
||||
c Array(Nullable(Float64))
|
||||
1 s1 \N
|
||||
c Array(Nullable(Float64))
|
||||
1 s1 []
|
||||
2 } [2]
|
||||
\N \N \N
|
||||
\N \N \N
|
||||
\N \N []
|
||||
\N \N []
|
||||
\N \N [3]
|
||||
|
@ -1,15 +1,15 @@
|
||||
a Nullable(String)
|
||||
a Nullable(Float64)
|
||||
b Nullable(String)
|
||||
c Nullable(String)
|
||||
1 s1 \N
|
||||
c Array(Nullable(Float64))
|
||||
1 s1 []
|
||||
2 } [2]
|
||||
\N \N \N
|
||||
\N \N \N
|
||||
\N \N []
|
||||
\N \N []
|
||||
\N \N [3]
|
||||
b Nullable(String)
|
||||
a Nullable(String)
|
||||
c Nullable(String)
|
||||
e Nullable(String)
|
||||
b Nullable(Float64)
|
||||
a Nullable(Float64)
|
||||
c Nullable(Float64)
|
||||
e Nullable(Float64)
|
||||
1 \N \N \N
|
||||
\N 2 3 \N
|
||||
\N \N \N \N
|
||||
|
Loading…
Reference in New Issue
Block a user