while ((chunk_end = strchr(chunk_search_start, '\'')) != NULL)
{ /* copy including the found delimiting ' */
appendBinaryStringInfoNT(str,
chunk_copy_start,
chunk_end - chunk_copy_start + 1);
/* in order to double it, include this ' into the next chunk as well */
chunk_copy_start = chunk_end;
chunk_search_start = chunk_end + 1;
}
/* copy the last chunk and terminate */ if (ellipsis)
appendStringInfo(str, "%s...'", chunk_copy_start); else
appendStringInfo(str, "%s'", chunk_copy_start);
if (copy)
pfree(copy);
}
Messung V0.5 in Prozent
[Dauer der Verarbeitung: 0.2 Sekunden, vorverarbeitet 2026-08-08]