mirror of https://github.com/VinGarcia/ksql.git
Minor fix to the AttrModifier struct
parent
57c0f4cade
commit
0d73ac9a18
|
@ -9,11 +9,9 @@ type AttrModifier struct {
|
||||||
// The following attributes will tell KSQL to
|
// The following attributes will tell KSQL to
|
||||||
// leave this attribute out of insertions, updates,
|
// leave this attribute out of insertions, updates,
|
||||||
// and queries respectively.
|
// and queries respectively.
|
||||||
//
|
SkipOnInsert bool
|
||||||
// (the private ones are not implemented yet)
|
|
||||||
skipOnInsert bool
|
|
||||||
SkipOnUpdate bool
|
SkipOnUpdate bool
|
||||||
skipOnQuery 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.
|
||||||
|
|
Loading…
Reference in New Issue