Fixed issue with collection types in udt. empty type colums skiped. Added test for udt.

This commit is contained in:
pavle995
2022-05-08 15:08:09 +02:00
committed by Michal Jan Matczuk
parent a62ba24cf9
commit fc92258512
5 changed files with 41 additions and 9 deletions

View File

@@ -44,8 +44,13 @@ var (
})
)
type AlbumUserType struct {
Name string
Songwriters []string
}
type PlaylistsStruct struct {
Album string
Album AlbumUserType
Artist string
Id [16]byte
SongId [16]byte