mirror of https://github.com/VinGarcia/ksql.git
Remove skipQueries option from modifiers since it was not working yet
parent
f41edb427d
commit
511abf659d
|
@ -11,7 +11,6 @@ type AttrModifier struct {
|
|||
// and queries respectively.
|
||||
SkipOnInsert bool
|
||||
SkipOnUpdate bool
|
||||
SkipOnQuery bool
|
||||
|
||||
// Implement these functions if you want to override the default Scan/Value behavior
|
||||
// for the target attribute.
|
||||
|
|
|
@ -23,7 +23,6 @@ func init() {
|
|||
// to test the feature of skipping updates, inserts and queries.
|
||||
modifiers.Store("skipUpdates", skipUpdatesModifier)
|
||||
modifiers.Store("skipInserts", skipInsertsModifier)
|
||||
modifiers.Store("skipQueries", skipQueriesModifier)
|
||||
}
|
||||
|
||||
// RegisterAttrModifier allow users to add custom modifiers on startup
|
||||
|
|
|
@ -7,7 +7,3 @@ var skipInsertsModifier = AttrModifier{
|
|||
var skipUpdatesModifier = AttrModifier{
|
||||
SkipOnUpdate: true,
|
||||
}
|
||||
|
||||
var skipQueriesModifier = AttrModifier{
|
||||
SkipOnQuery: true,
|
||||
}
|
||||
|
|
|
@ -2986,7 +2986,6 @@ func ModifiersTest(
|
|||
tt.AssertEqual(t, taggedUser.Name, "Marta Ribeiro")
|
||||
})
|
||||
})
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue