(flag flag.BytesWithUnlimited)
| 70 | } |
| 71 | |
| 72 | func convertBytesFlagToNullInt(flag flag.BytesWithUnlimited) *types.NullInt { |
| 73 | if !flag.IsSet { |
| 74 | return nil |
| 75 | } |
| 76 | |
| 77 | return &types.NullInt{IsSet: true, Value: flag.Value} |
| 78 | } |
| 79 | |
| 80 | func convertMegabytesFlagToNullInt(flag flag.MegabytesWithUnlimited) *types.NullInt { |
| 81 | if !flag.IsSet { |