d3b0691bbd
these are unchanged from storj.io/dbx. we're importing them because in a later commit we will change them, and it'd be nice to see that diff as a separate commit. Change-Id: I8315130ed6bab397bd65b9a1a90c29d130b8c02d
27 lines
589 B
Cheetah
27 lines
589 B
Cheetah
{{- define "signature" -}}
|
|
Count_{{ .Suffix }}({{ ctxparam .Args }}) (
|
|
count int64, err error)
|
|
{{- end -}}
|
|
|
|
{{- define "invoke" -}}
|
|
Count_{{ .Suffix }}({{ ctxarg .Args }})
|
|
{{- end -}}
|
|
|
|
{{- define "body" }}
|
|
{{ embedplaceholders .Info }}
|
|
{{ embedsql .Info "__embed_stmt" }}
|
|
|
|
var __values []interface{}
|
|
{{ embedvalues .Args "__values" }}
|
|
|
|
var __stmt = __sqlbundle_Render(obj.dialect, __embed_stmt)
|
|
obj.logStmt(__stmt, __values...)
|
|
|
|
err = obj.driver.QueryRowContext(ctx, __stmt, __values...).Scan(&count)
|
|
if err != nil {
|
|
return 0, obj.makeErr(err)
|
|
}
|
|
|
|
return count, nil
|
|
{{ end -}}
|