Fix squirrel test build

This commit is contained in:
Sauyon Lee
2020-02-05 14:05:04 -08:00
parent c94f5dafb3
commit 559ac8f0d2

View File

@@ -2,8 +2,8 @@ package squirrel
type StatementBuilderType struct{}
func Expr(e string) string {
return Expr(e)
func Expr(e string, args ...interface{}) string {
return Expr(e, args...)
}
var StatementBuilder = &StatementBuilderType{}