|
1 | 1 | #include <DataTypes/DataTypeFactory.h>
|
2 | 2 | #include <DataTypes/DataTypeObject.h>
|
| 3 | +#include <DataTypes/DataTypeObjectDeprecated.h> |
3 | 4 | #include <DataTypes/Serializations/SerializationJSON.h>
|
4 | 5 | #include <DataTypes/Serializations/SerializationObjectTypedPath.h>
|
5 | 6 | #include <DataTypes/Serializations/SerializationObjectDynamicPath.h>
|
6 | 7 | #include <DataTypes/Serializations/SerializationSubObject.h>
|
7 | 8 | #include <Columns/ColumnObject.h>
|
| 9 | +#include <Common/CurrentThread.h> |
8 | 10 |
|
9 | 11 | #include <Parsers/IAST.h>
|
10 | 12 | #include <Parsers/ASTLiteral.h>
|
@@ -511,13 +513,24 @@ static DataTypePtr createObject(const ASTPtr & arguments, const DataTypeObject::
|
511 | 513 |
|
512 | 514 | static DataTypePtr createJSON(const ASTPtr & arguments)
|
513 | 515 | {
|
| 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 | + |
514 | 528 | return createObject(arguments, DataTypeObject::SchemaFormat::JSON);
|
515 | 529 | }
|
516 | 530 |
|
517 | 531 | void registerDataTypeJSON(DataTypeFactory & factory)
|
518 | 532 | {
|
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); |
521 | 534 | }
|
522 | 535 |
|
523 | 536 | }
|
0 commit comments