Skip to content

Commit c1601b4

Browse files
Merge pull request ClickHouse#68977 from ClickHouse/backport/24.8/68793
Backport ClickHouse#68793 to 24.8: Check setting use_json_alias_for_old_object_type in runtime
2 parents f88b03a + 2551f58 commit c1601b4

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

docs/en/operations/settings/settings.md

-1
Original file line numberDiff line numberDiff line change
@@ -5623,7 +5623,6 @@ Default value: `1GiB`.
56235623
## use_json_alias_for_old_object_type
56245624

56255625
When enabled, `JSON` data type alias will be used to create an old [Object('json')](../../sql-reference/data-types/json.md) type instead of the new [JSON](../../sql-reference/data-types/newjson.md) type.
5626-
This setting requires server restart to take effect when changed.
56275626

56285627
Default value: `false`.
56295628

src/DataTypes/DataTypeObject.cpp

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
#include <DataTypes/DataTypeFactory.h>
22
#include <DataTypes/DataTypeObject.h>
3+
#include <DataTypes/DataTypeObjectDeprecated.h>
34
#include <DataTypes/Serializations/SerializationJSON.h>
45
#include <DataTypes/Serializations/SerializationObjectTypedPath.h>
56
#include <DataTypes/Serializations/SerializationObjectDynamicPath.h>
67
#include <DataTypes/Serializations/SerializationSubObject.h>
78
#include <Columns/ColumnObject.h>
9+
#include <Common/CurrentThread.h>
810

911
#include <Parsers/IAST.h>
1012
#include <Parsers/ASTLiteral.h>
@@ -511,13 +513,24 @@ static DataTypePtr createObject(const ASTPtr & arguments, const DataTypeObject::
511513

512514
static DataTypePtr createJSON(const ASTPtr & arguments)
513515
{
516+
auto context = CurrentThread::getQueryContext();
517+
if (!context)
518+
context = Context::getGlobalContextInstance();
519+
520+
if (context->getSettingsRef().use_json_alias_for_old_object_type)
521+
{
522+
if (arguments && !arguments->children.empty())
523+
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Experimental Object type doesn't support any arguments. If you want to use new JSON type, set setting allow_experimental_json_type = 1");
524+
525+
return std::make_shared<DataTypeObjectDeprecated>("JSON", false);
526+
}
527+
514528
return createObject(arguments, DataTypeObject::SchemaFormat::JSON);
515529
}
516530

517531
void registerDataTypeJSON(DataTypeFactory & factory)
518532
{
519-
if (!Context::getGlobalContextInstance()->getSettingsRef().use_json_alias_for_old_object_type)
520-
factory.registerDataType("JSON", createJSON, DataTypeFactory::Case::Insensitive);
533+
factory.registerDataType("JSON", createJSON, DataTypeFactory::Case::Insensitive);
521534
}
522535

523536
}

src/DataTypes/DataTypeObjectDeprecated.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@ static DataTypePtr create(const ASTPtr & arguments)
7878
void registerDataTypeObjectDeprecated(DataTypeFactory & factory)
7979
{
8080
factory.registerDataType("Object", create);
81-
if (Context::getGlobalContextInstance()->getSettingsRef().use_json_alias_for_old_object_type)
82-
factory.registerSimpleDataType("JSON",
83-
[] { return std::make_shared<DataTypeObjectDeprecated>("JSON", false); },
84-
DataTypeFactory::Case::Insensitive);
8581
}
8682

8783
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{"a":"42"} JSON
2+
{"a":42} Object(\'json\')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set allow_experimental_object_type=1;
2+
set allow_experimental_json_type=1;
3+
set use_json_alias_for_old_object_type=0;
4+
select materialize('{"a" : 42}')::JSON as json, toTypeName(json);
5+
set use_json_alias_for_old_object_type=1;
6+
select '{"a" : 42}'::JSON as json, toTypeName(json);
7+
select '{"a" : 42}'::JSON(max_dynamic_paths=100) as json, toTypeName(json); -- {serverError BAD_ARGUMENTS}
8+

0 commit comments

Comments
 (0)