recovery_ts_hint_v1.patch

application/octet-stream

Filename: recovery_ts_hint_v1.patch
Type: application/octet-stream
Part: 0
Message: Re: 9.0beta2 - server crash when using HS + SR

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: context
Series: patch v1
File+
src/backend/commands/tablespace.c 3 0
*** a/src/backend/commands/tablespace.c
--- b/src/backend/commands/tablespace.c
***************
*** 552,559 **** create_tablespace_directories(const char *location, const Oid tablespaceoid)
  		if (errno == ENOENT)
  			ereport(ERROR,
  					(errcode(ERRCODE_UNDEFINED_FILE),
! 					 errmsg("directory \"%s\" does not exist",
! 							location)));
  		else
  			ereport(ERROR,
  					(errcode_for_file_access(),
--- 552,560 ----
  		if (errno == ENOENT)
  			ereport(ERROR,
  					(errcode(ERRCODE_UNDEFINED_FILE),
! 					 errmsg("directory \"%s\" does not exist", location),
! 					 errhint("create \"%s\" directory for tablespace before "
! 							 "restarting the server", location)));
  		else
  			ereport(ERROR,
  					(errcode_for_file_access(),