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.
|
// and queries respectively.
|
||||||
SkipOnInsert bool
|
SkipOnInsert bool
|
||||||
SkipOnUpdate bool
|
SkipOnUpdate bool
|
||||||
SkipOnQuery bool
|
|
||||||
|
|
||||||
// Implement these functions if you want to override the default Scan/Value behavior
|
// Implement these functions if you want to override the default Scan/Value behavior
|
||||||
// for the target attribute.
|
// for the target attribute.
|
||||||
|
|
|
@ -23,7 +23,6 @@ func init() {
|
||||||
// to test the feature of skipping updates, inserts and queries.
|
// to test the feature of skipping updates, inserts and queries.
|
||||||
modifiers.Store("skipUpdates", skipUpdatesModifier)
|
modifiers.Store("skipUpdates", skipUpdatesModifier)
|
||||||
modifiers.Store("skipInserts", skipInsertsModifier)
|
modifiers.Store("skipInserts", skipInsertsModifier)
|
||||||
modifiers.Store("skipQueries", skipQueriesModifier)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// RegisterAttrModifier allow users to add custom modifiers on startup
|
// RegisterAttrModifier allow users to add custom modifiers on startup
|
||||||
|
|
|
@ -7,7 +7,3 @@ var skipInsertsModifier = AttrModifier{
|
||||||
var skipUpdatesModifier = AttrModifier{
|
var skipUpdatesModifier = AttrModifier{
|
||||||
SkipOnUpdate: true,
|
SkipOnUpdate: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
var skipQueriesModifier = AttrModifier{
|
|
||||||
SkipOnQuery: true,
|
|
||||||
}
|
|
||||||
|
|
|
@ -2986,7 +2986,6 @@ func ModifiersTest(
|
||||||
tt.AssertEqual(t, taggedUser.Name, "Marta Ribeiro")
|
tt.AssertEqual(t, taggedUser.Name, "Marta Ribeiro")
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue