Makes all the query ops the correct type.

This commit is contained in:
James Phillips 2015-11-17 09:27:10 -08:00
parent 533e6fc89e
commit e3ef204ac7
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ type PreparedQueryOp string
const (
PreparedQueryCreate PreparedQueryOp = "create"
PreparedQueryUpdate = "update"
PreparedQueryDelete = "delete"
PreparedQueryUpdate PreparedQueryOp = "update"
PreparedQueryDelete PreparedQueryOp = "delete"
)
// QueryRequest is used to create or change prepared queries.