* Added command line history to the command, query and filter prompts. * Added query planning debugging to the log. * Fixed bug in query expression which was not treating true and false as boolean literals. * Fixed a bug in the query planning logic which was incorrectly determine that an expression of the form sort_key ^= "string", with no partition key, could be executed as a query instead of a scan.
11 lines
203 B
Go
11 lines
203 B
Go
package commandctrl
|
|
|
|
import (
|
|
"context"
|
|
"github.com/lmika/audax/internal/dynamo-browse/services"
|
|
)
|
|
|
|
type IterProvider interface {
|
|
Iter(ctx context.Context, category string) services.HistoryProvider
|
|
}
|