microo8 / mimir

Generates minimal embedded database from structs in golang; moved to gitlab.com/microo8/mimir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Structure with field type []byte is not working.

johnkl opened this issue · comments

Simple struct

type ByteStruct struct {
    ByteTest []byte `index:"ByteTest"`
}

does not work with mimir.

Generate error: format source error: $374:21: expected operand, found ']' (and 10 more errors)

Yeah, that isn't done yet. also other build in types are not indexed (yet only int and string is supported). I check it asap (maybe tomorow)

Byte array type and indexing now supported! But not completely tested.