Skip to content

Commit d758f1a

Browse files
authored
Merge pull request #4396 from Blargian/remove_deprecated_object_type_references
Docs: remove references to deprecated object type
2 parents 554163e + fbe4a37 commit d758f1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/cloud/onboard/02_migrate/01_migration_guides/04_snowflake/03_sql_translation_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Snowflake supports the `VARIANT`, `OBJECT` and `ARRAY` types for semi-structured
5656
data.
5757

5858
ClickHouse offers the equivalent [`Variant`](/sql-reference/data-types/variant),
59-
[`Object`](/sql-reference/data-types/object-data-type) (deprecated) and [`Array`](/sql-reference/data-types/array)
59+
`Object` (now deprecated in favor of the native `JSON` type) and [`Array`](/sql-reference/data-types/array)
6060
types. Additionally, ClickHouse has the [`JSON`](/sql-reference/data-types/newjson)
6161
type which replaces the now deprecated `Object('json')` type and is particularly
6262
performant and storage efficient in [comparison to other native JSON types](https://jsonbench.com/).

docs/integrations/data-ingestion/data-formats/json/formats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Note that `JSONAsString` works perfectly fine in cases we have JSON object-per-l
348348

349349
## Schema for nested objects {#schema-for-nested-objects}
350350

351-
In cases when we're dealing with [nested JSON objects](../assets/list-nested.json), we can additionally define an explicit schema and use complex types ([`Array`](/sql-reference/data-types/array.md), [`Object Data Type`](/sql-reference/data-types/object-data-type) or [`Tuple`](/sql-reference/data-types/tuple.md)) to load data:
351+
In cases when we're dealing with [nested JSON objects](../assets/list-nested.json), we can additionally define an explicit schema and use complex types ([`Array`](/sql-reference/data-types/array.md), [`JSON`](/integrations/data-formats/json/overview) or [`Tuple`](/sql-reference/data-types/tuple.md)) to load data:
352352

353353
```sql
354354
SELECT *

0 commit comments

Comments
 (0)