ClickHouse/tests/queries/0_stateless/02452_json_utf8_validation.reference

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

175 lines
1.5 KiB
Plaintext
Raw Normal View History

JSONCompact
{
"meta":
[
{
"name": "s",
"type": "String"
}
],
"data":
[
["<22> <20>"]
],
"rows": 1
}
JSON
{
"meta":
[
{
"name": "s",
"type": "String"
}
],
"data":
[
{
"s": "<22> <20>"
}
],
"rows": 1
}
XML
<?xml version='1.0' encoding='UTF-8' ?>
<result>
<meta>
<columns>
<column>
<name>s</name>
<type>String</type>
</column>
</columns>
</meta>
<data>
<row>
<s><3E> <20></s>
</row>
</data>
<rows>1</rows>
</result>
JSONColumnsWithMetadata
{
"meta":
[
{
"name": "s",
"type": "String"
}
],
"data":
{
"s": ["<22> <20>"]
},
"rows": 1
}
JSONEachRow
{"s":"<22> <20>"}
JSONCompactEachRow
["<22> <20>"]
JSONColumns
{
"s": ["<22> <20>"]
}
JSONCompactColumns
[
["<22> <20>"]
]
JSONObjectEachRow
{
"row_1": {"s":"<22> <20>"}
}
JSONCompact
{
"meta":
[
{
"name": "s",
"type": "String"
}
],
"data":
[
["<22> <20>"]
],
"rows": 1
}
JSON
{
"meta":
[
{
"name": "s",
"type": "String"
}
],
"data":
[
{
"s": "<22> <20>"
}
],
"rows": 1
}
XML
<?xml version='1.0' encoding='UTF-8' ?>
<result>
<meta>
<columns>
<column>
<name>s</name>
<type>String</type>
</column>
</columns>
</meta>
<data>
<row>
<s><3E> <20></s>
</row>
</data>
<rows>1</rows>
</result>
JSONColumnsWithMetadata
{
"meta":
[
{
"name": "s",
"type": "String"
}
],
"data":
{
"s": ["<22> <20>"]
},
"rows": 1
}
JSONEachRow
{"s":"<22> <20>"}
JSONCompactEachRow
["<22> <20>"]
JSONColumns
{
"s": ["<22> <20>"]
}
JSONCompactColumns
[
["<22> <20>"]
]
JSONObjectEachRow
{
"row_1": {"s":"<22> <20>"}
}