Next implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 1266 | |
| 1267 | // Next implements the Datum interface. |
| 1268 | func (d *DString) Next(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 1269 | return NewDString(string(encoding.BytesNext([]byte(*d)))), true |
| 1270 | } |
| 1271 | |
| 1272 | // IsMax implements the Datum interface. |
| 1273 | func (*DString) IsMax(ctx context.Context, cmpCtx CompareContext) bool { |
nothing calls this directly
no test coverage detected