30 #define ERRCODE_DUPLICATE_OBJECT "42710"
38 #define MINIMUM_VERSION_FOR_SHOW_CMD 100000
43 #define MINIMUM_VERSION_FOR_GROUP_ACCESS 110000
67 const char **keywords;
89 if (conn_opts == NULL)
92 for (conn_opt = conn_opts; conn_opt->
keyword != NULL; conn_opt++)
94 if (conn_opt->
val != NULL && conn_opt->
val[0] !=
'\0')
98 keywords =
pg_malloc0((argcount + 1) *
sizeof(*keywords));
105 keywords[
i] =
"dbname";
109 for (conn_opt = conn_opts; conn_opt->
keyword != NULL; conn_opt++)
111 if (conn_opt->
val != NULL && conn_opt->
val[0] !=
'\0')
121 keywords =
pg_malloc0((argcount + 1) *
sizeof(*keywords));
123 keywords[
i] =
"dbname";
128 keywords[
i] =
"replication";
131 keywords[
i] =
"fallback_application_name";
137 keywords[
i] =
"host";
143 keywords[
i] =
"user";
149 keywords[
i] =
"port";
164 need_password =
false;
170 keywords[
i] =
"password";
190 pg_fatal(
"could not connect to server");
198 need_password =
true;
201 while (need_password);
247 pg_log_error(
"could not determine server setting for \"integer_datetimes\"");
252 if (strcmp(tmpparam,
"on") != 0)
254 pg_log_error(
"\"integer_datetimes\" compile flag does not match server");
284 for (conn_opt = conn_opts; conn_opt->
keyword != NULL; conn_opt++)
286 if (strcmp(conn_opt->
keyword,
"dbname") == 0 &&
287 conn_opt->
val != NULL && conn_opt->
val[0] !=
'\0')
309 char *err_msg = NULL;
316 if (conn_opts == NULL)
331 if (conn_opts == NULL)
365 pg_log_error(
"could not send replication command \"%s\": %s",
373 pg_log_error(
"could not fetch WAL segment size: got %d rows and %d fields, expected %d rows and %d or more fields",
381 if (sscanf(
PQgetvalue(
res, 0, 0),
"%d%2s", &xlog_val, xlog_unit) != 2)
391 if (strcmp(xlog_unit,
"MB") == 0)
392 multiplier = 1024 * 1024;
393 else if (strcmp(xlog_unit,
"GB") == 0)
394 multiplier = 1024 * 1024 * 1024;
402 "remote server reported invalid WAL segment size (%d bytes)",
439 pg_log_error(
"could not send replication command \"%s\": %s",
447 pg_log_error(
"could not fetch group access flag: got %d rows and %d fields, expected %d rows and %d or more fields",
456 pg_log_error(
"group access flag could not be parsed: %s",
491 pg_log_error(
"could not send replication command \"%s\": %s",
499 pg_log_error(
"could not identify system: got %d rows and %d fields, expected %d rows and %d or more fields",
511 if (starttli != NULL)
519 pg_log_error(
"could not parse write-ahead log location \"%s\"",
536 pg_log_error(
"could not identify system: got %d rows and %d fields, expected %d rows and %d or more fields",
568 *restart_lsn = lsn_loc;
570 *restart_tli = tli_loc;
579 pg_log_error(
"could not send replication command \"%s\": %s",
588 pg_log_error(
"could not read replication slot \"%s\": got %d rows and %d fields, expected %d rows and %d fields",
600 pg_log_error(
"replication slot \"%s\" does not exist", slot_name);
611 pg_log_error(
"expected a physical replication slot, got type \"%s\" instead",
625 pg_log_error(
"could not parse restart_lsn \"%s\" for replication slot \"%s\"",
630 lsn_loc = ((
uint64) hi) << 32 | lo;
641 *restart_lsn = lsn_loc;
643 *restart_tli = tli_loc;
654 bool is_temporary,
bool is_physical,
bool reserve_wal,
664 (!is_physical &&
plugin != NULL));
666 Assert(slot_name != NULL);
678 if (use_new_option_syntax)
695 if (use_new_option_syntax)
697 "SNAPSHOT",
"nothing");
700 "NOEXPORT_SNAPSHOT");
703 if (use_new_option_syntax)
706 if (query->
data[query->
len - 1] ==
'(')
709 query->
data[query->
len] =
'\0';
731 pg_log_error(
"could not send replication command \"%s\": %s",
742 pg_log_error(
"could not create replication slot \"%s\": got %d rows and %d fields, expected %d rows and %d fields",
766 Assert(slot_name != NULL);
776 pg_log_error(
"could not send replication command \"%s\": %s",
786 pg_log_error(
"could not drop replication slot \"%s\": got %d rows and %d fields, expected %d rows and %d fields",
813 if (
buf->len > 0 &&
buf->data[
buf->len - 1] !=
'(')
815 if (use_new_option_syntax)
832 char *option_name,
char *option_value)
836 if (option_value != NULL)
838 size_t length = strlen(option_value);
839 char *escaped_value =
palloc(1 + 2 * length);
843 pfree(escaped_value);
855 char *option_name,
int32 option_value)
887 long *secs,
int *microsecs)
925 memcpy(
buf, &n64,
sizeof(n64));
936 memcpy(&n64,
buf,
sizeof(n64));
static Datum values[MAXATTR]
#define ngettext(s, p, n)
#define Assert(condition)
#define ALWAYS_SECURE_SEARCH_PATH_SQL
#define POSTGRES_EPOCH_JDATE
static void PGresult * res
const char * PQparameterStatus(const PGconn *conn, const char *paramName)
int PQserverVersion(const PGconn *conn)
PQconninfoOption * PQconninfoParse(const char *conninfo, char **errmsg)
PGconn * PQconnectdbParams(const char *const *keywords, const char *const *values, int expand_dbname)
PQconninfoOption * PQconndefaults(void)
void PQconninfoFree(PQconninfoOption *connOptions)
int PQconnectionNeedsPassword(const PGconn *conn)
char * PQerrorMessage(const PGconn *conn)
ConnStatusType PQstatus(const PGconn *conn)
void PQfinish(PGconn *conn)
size_t PQescapeStringConn(PGconn *conn, char *to, const char *from, size_t length, int *error)
ExecStatusType PQresultStatus(const PGresult *res)
int PQntuples(const PGresult *res)
PGresult * PQexec(PGconn *conn, const char *query)
char * PQgetvalue(const PGresult *res, int tup_num, int field_num)
int PQgetisnull(const PGresult *res, int tup_num, int field_num)
char * PQresultErrorField(const PGresult *res, int fieldcode)
int PQnfields(const PGresult *res)
void * pg_malloc0(size_t size)
char * pg_strdup(const char *in)
void SetDataDirectoryCreatePerm(int dataDirMode)
#define pg_log_error(...)
#define pg_log_error_detail(...)
void pfree(void *pointer)
#define DEFAULT_XLOG_SEG_SIZE
static bool slot_exists_ok
static const char * plugin
static XLogRecPtr startpos
PQExpBuffer createPQExpBuffer(void)
void appendPQExpBuffer(PQExpBuffer str, const char *fmt,...)
void destroyPQExpBuffer(PQExpBuffer str)
void appendPQExpBufferChar(PQExpBuffer str, char ch)
void appendPQExpBufferStr(PQExpBuffer str, const char *data)
char * simple_prompt(const char *prompt, bool echo)
void AppendIntegerCommandOption(PQExpBuffer buf, bool use_new_option_syntax, char *option_name, int32 option_value)
bool RetrieveWalSegSize(PGconn *conn)
#define ERRCODE_DUPLICATE_OBJECT
#define MINIMUM_VERSION_FOR_SHOW_CMD
int64 fe_recvint64(char *buf)
char * GetDbnameFromConnectionOptions(void)
bool CreateReplicationSlot(PGconn *conn, const char *slot_name, const char *plugin, bool is_temporary, bool is_physical, bool reserve_wal, bool slot_exists_ok, bool two_phase)
TimestampTz feGetCurrentTimestamp(void)
#define MINIMUM_VERSION_FOR_GROUP_ACCESS
void feTimestampDifference(TimestampTz start_time, TimestampTz stop_time, long *secs, int *microsecs)
void AppendPlainCommandOption(PQExpBuffer buf, bool use_new_option_syntax, char *option_name)
void AppendStringCommandOption(PQExpBuffer buf, bool use_new_option_syntax, char *option_name, char *option_value)
void fe_sendint64(int64 i, char *buf)
static char * FindDbnameInConnParams(PQconninfoOption *conn_opts)
PGconn * GetConnection(void)
bool feTimestampDifferenceExceeds(TimestampTz start_time, TimestampTz stop_time, int msec)
bool GetSlotInformation(PGconn *conn, const char *slot_name, XLogRecPtr *restart_lsn, TimeLineID *restart_tli)
static bool RetrieveDataDirCreatePerm(PGconn *conn)
bool DropReplicationSlot(PGconn *conn, const char *slot_name)
bool RunIdentifySystem(PGconn *conn, char **sysid, TimeLineID *starttli, XLogRecPtr *startpos, char **db_name)
int gettimeofday(struct timeval *tp, void *tzp)
#define IsValidWalSegSize(size)
#define InvalidXLogRecPtr