Remove skipQueries option from modifiers since it was not working yet

pull/29/head
Vinícius Garcia 2022-10-12 23:00:07 -03:00
parent f41edb427d
commit 511abf659d
4 changed files with 0 additions and 7 deletions

View File

@ -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.

View File

@ -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

View File

@ -7,7 +7,3 @@ var skipInsertsModifier = AttrModifier{
var skipUpdatesModifier = AttrModifier{
SkipOnUpdate: true,
}
var skipQueriesModifier = AttrModifier{
SkipOnQuery: true,
}

View File

@ -2986,7 +2986,6 @@ func ModifiersTest(
tt.AssertEqual(t, taggedUser.Name, "Marta Ribeiro")
})
})
})
}