Minor fix to the AttrModifier struct

pull/29/head
Vinícius Garcia 2022-10-09 21:58:41 -03:00
parent 57c0f4cade
commit 0d73ac9a18
1 changed files with 2 additions and 4 deletions

View File

@ -9,11 +9,9 @@ type AttrModifier struct {
// The following attributes will tell KSQL to
// leave this attribute out of insertions, updates,
// and queries respectively.
//
// (the private ones are not implemented yet)
skipOnInsert bool
SkipOnInsert bool
SkipOnUpdate bool
skipOnQuery bool
SkipOnQuery bool
// Implement these functions if you want to override the default Scan/Value behavior
// for the target attribute.