Commit bd0ade6 1 parent f860696 commit bd0ade6 Copy full SHA for bd0ade6
File tree 4 files changed +25
-12
lines changed
4 files changed +25
-12
lines changed Original file line number Diff line number Diff line change
1
+ # v2.22.3, 2024-03-25 <!-- Release notes generated using configuration in .github/release.yml at main -->
2
+
3
+ ## What's Changed
4
+ ### Fixes 🐛
5
+ * Fix panic on tuple scan on [ ] any by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1249
6
+ ### Other Changes 🛠
7
+ * Error channel deadlock fix test case by @threadedstream in https://github.com/ClickHouse/clickhouse-go/pull/1239
8
+ * Add a test case for #1127 by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1242
9
+ * Run cloud/head jobs when label by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1250
10
+
11
+
12
+ ** Full Changelog** : https://github.com/ClickHouse/clickhouse-go/compare/v2.22.2...v2.22.3
13
+
1
14
# v2.22.2, 2024-03-18 <!-- Release notes generated using configuration in .github/release.yml at main -->
2
15
3
16
## What's Changed
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const ClientName = "clickhouse-go"
30
30
const (
31
31
ClientVersionMajor = 2
32
32
ClientVersionMinor = 22
33
- ClientVersionPatch = 2
33
+ ClientVersionPatch = 3
34
34
ClientTCPProtocolVersion = proto .DBMS_TCP_PROTOCOL_VERSION
35
35
)
36
36
Original file line number Diff line number Diff line change 1
- Lukas Eklund <leklund@gmail .com>
1
+ Kuba Kaflik <kuba.kaflik@clickhouse .com>
Original file line number Diff line number Diff line change @@ -2322,16 +2322,16 @@ func TestJSONEscapeKeys(t *testing.T) {
2322
2322
ctx := context .Background ()
2323
2323
batch := prepareBatch (t , conn , ctx )
2324
2324
row1 := map [string ][]int64 {
2325
- "56" : {1 , 2 , 3 },
2326
- "1.1" : {4 , 5 , 6 },
2327
- "世界世界世界" : {7 , 8 , 9 },
2328
- "1.1a" : {10 , 11 , 12 },
2329
- "a22.2" : {13 , 14 , 15 },
2330
- "a22`" : {16 , 17 , 18 },
2331
- "22.2`" : {19 , 20 , 21 },
2332
- "22.2\\ `" : {22 , 23 , 24 },
2333
- "s'" : {22 , 23 , 24 },
2334
- "a`a\\ \\ " : {22 , 23 , 24 },
2325
+ "56" : {1 , 2 , 3 },
2326
+ "1.1" : {4 , 5 , 6 },
2327
+ "世界世界世界" : {7 , 8 , 9 },
2328
+ "1.1a" : {10 , 11 , 12 },
2329
+ "a22.2" : {13 , 14 , 15 },
2330
+ "a22`" : {16 , 17 , 18 },
2331
+ "22.2`" : {19 , 20 , 21 },
2332
+ "22.2\\ `" : {22 , 23 , 24 },
2333
+ "s'" : {22 , 23 , 24 },
2334
+ "a`a\\ \\ " : {22 , 23 , 24 },
2335
2335
}
2336
2336
require .NoError (t , batch .Append (row1 ))
2337
2337
require .NoError (t , batch .Send ())
You can’t perform that action at this time.
0 commit comments