Skip to content

Commit bbce4d2

Browse files
Merge branch 'main' into type-docs
2 parents febec9a + 2884bed commit bbce4d2

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.6.2](https://github.com/cloudquery/plugin-sdk/compare/v3.6.1...v3.6.2) (2023-05-22)
9+
10+
11+
### Bug Fixes
12+
13+
* **testdata:** Don't use escaping in JSON testdata (as array.Approx will check the underlying data) ([#898](https://github.com/cloudquery/plugin-sdk/issues/898)) ([f7e0ae7](https://github.com/cloudquery/plugin-sdk/commit/f7e0ae7bbf520a77d3a900fc9b0068a18fcdfab3))
14+
815
## [3.6.1](https://github.com/cloudquery/plugin-sdk/compare/v3.6.0...v3.6.1) (2023-05-21)
916

1017

schema/testdata.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,9 @@ func getExampleJSON(colName string, dataType arrow.DataType, opts GenTestDataOpt
319319
}
320320
if arrow.TypeEqual(dataType, types.ExtensionTypes.JSON) {
321321
if strings.HasSuffix(colName, "_array") {
322-
return `"[{\"test\":\"test\"},123,{\"test_number\":456}]"`
322+
return `[{"test":"test"},123,{"test_number":456}]`
323323
}
324-
return `"{\"test\":[\"a\",\"b\",3]}"`
324+
return `{"test":["a","b",3]}`
325325
}
326326
if arrow.TypeEqual(dataType, types.ExtensionTypes.Inet) {
327327
return `"192.0.2.0/24"`

0 commit comments

Comments
 (0)