astStringVar is any variable that represents a string.
| 74 | |
| 75 | // astStringVar is any variable that represents a string. |
| 76 | type astStringVar struct { |
| 77 | Source RegoSource |
| 78 | FieldPath []string |
| 79 | ColumnString string |
| 80 | } |
| 81 | |
| 82 | func StringVarMatcher(sqlString string, regoPath []string) VariableMatcher { |
| 83 | return astStringVar{FieldPath: regoPath, ColumnString: sqlString} |
nothing calls this directly
no outgoing calls
no test coverage detected