forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types_test.go
57 lines (42 loc) · 845 Bytes
/
types_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package avro_test
type TestInterface interface {
SomeFunc() int
}
type TestRecord struct {
A int64 `avro:"a"`
B string `avro:"b"`
}
func (*TestRecord) SomeFunc() int {
return 0
}
type TestPartialRecord struct {
B string `avro:"b"`
}
type TestNestedRecord struct {
A TestRecord `avro:"a"`
B TestRecord `avro:"b"`
}
type TestUnion struct {
A any `avro:"a"`
}
type TestEmbeddedRecord struct {
C string `avro:"c"`
TestEmbed // tests not-first position
}
type TestEmbeddedPtrRecord struct {
C string `avro:"c"`
*TestEmbed // tests not-first position
}
type TestEmbed struct {
A int64 `avro:"a"`
B string `avro:"b"`
}
type TestEmbedInt int
type TestEmbeddedIntRecord struct {
B string `avro:"b"`
TestEmbedInt // tests not-first position
}
type TestUnexportedRecord struct {
A int64 `avro:"a"`
b string `avro:"b"`
}