mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
mysql client compatibility
This commit is contained in:
parent
15b3f379a5
commit
3df57da2d8
@ -77,8 +77,10 @@ private:
|
||||
DataTypePtr type;
|
||||
Field value;
|
||||
};
|
||||
std::unordered_map<String, TypeAndValue> global_variable_map = {
|
||||
{"max_allowed_packet", {std::make_shared<DataTypeInt32>(), 67108864}}, {"version", {std::make_shared<DataTypeString>(), "5.7.30"}}};
|
||||
std::unordered_map<String, TypeAndValue> global_variable_map
|
||||
= {{"max_allowed_packet", {std::make_shared<DataTypeInt32>(), 67108864}},
|
||||
{"version", {std::make_shared<DataTypeString>(), "5.7.30"}},
|
||||
{"transaction_isolation", {std::make_shared<DataTypeString>(), "READ-UNCOMMITTED"}}};
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user