(in string)
| 141 | } |
| 142 | |
| 143 | func pgwireQuoteStringInTuple(in string) bool { |
| 144 | return in == "" || tupleQuoteSet.in(in) |
| 145 | } |
| 146 | |
| 147 | func pgwireQuoteStringInArray(in string) bool { |
| 148 | if in == "" || arrayQuoteSet.in(in) { |
no test coverage detected
searching dependent graphs…