Matthew Straughn

Results 26 comments of Matthew Straughn

@agnivade could you please trigger the e2e tests.

Fair enough @agnivade. I still need to write tests for this, I'll put my intentions/thought process below. **Thinking out loud** The point of this func is to return invalid channel...

@agnivade I could use some assisstance. I submitted code with some print statements comparing two funcs, one that is working and my func that is breaking. Working func `checkParentChildIntegrity` The...

@agnivade So... the plan of attack here is as follows: ``` if [SQL COUNT query] != 0 { // run integrity check query }else{ // return empty model.IntegrityCheckResult{} } ```...

So.... `if( [COUNT] != 0)` run this query: ``` SELECT CT.name as ParentID FROM Channels WHERE Type = 'D' AND (name NOT LIKE '%\_\_%' OR LENGTH(name) != 54); ``` Then...

So for the custom types... more specifically would this work? ``` type InvalidChannel struct { invalidChannel string } ```