zync icon indicating copy to clipboard operation
zync copied to clipboard

doneType ptr compare failing

Open mccanne opened this issue 4 years ago • 0 comments

In etl/pipeline.go, the commented out code cannot replace the code below for some reason...

		//XXX This still doesn't work with the bug fix.  See issue #
		//if vals[k].Type == p.doneType {
		//	out.Append(&vals[k])
		//}
		if typedef, ok := vals[k].Type.(*zed.TypeAlias); ok && typedef.Name == "done" {
			out.Append(&vals[k])
		}

mccanne avatar Nov 14 '21 16:11 mccanne