if (nfields < 1)
{ /* expect a numeric timeline ID as first field of line */
pg_log_error("syntax error in history file: %s", fline);
pg_log_error_detail("Expected a numeric timeline ID."); exit(1);
} if (nfields != 3)
{
pg_log_error("syntax error in history file: %s", fline);
pg_log_error_detail("Expected a write-ahead log switchpoint location."); exit(1);
} if (entries && tli <= lasttli)
{
pg_log_error("invalid data in history file: %s", fline);
pg_log_error_detail("Timeline IDs must be in increasing sequence."); exit(1);
}
if (entries && targetTLI <= lasttli)
{
pg_log_error("invalid data in history file");
pg_log_error_detail("Timeline IDs must be less than child timeline's ID."); exit(1);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.