| 136 | } |
| 137 | |
| 138 | static bool chunk_is_postgres_chunk(PipeProtoHeader *hdr) |
| 139 | { |
| 140 | return hdr->zero == 0 && hdr->pid != 0 && hdr->thid != 0 && |
| 141 | (hdr->log_format == 't' || hdr->log_format == 'c') && |
| 142 | (hdr->is_last == 't' || hdr->is_last == 'f'); |
| 143 | } |
| 144 | |
| 145 | /* |
| 146 | * Flags set by interrupt handlers for later service in the main loop. |
no outgoing calls
no test coverage detected