mirror of https://github.com/citusdata/citus.git
Fix error message of start_metadata_sync_to_node
Single quotation mark is added around nodename.pull/1247/head
parent
b8e4763a1a
commit
729a4a3bbe
|
@ -94,7 +94,7 @@ start_metadata_sync_to_node(PG_FUNCTION_ARGS)
|
|||
{
|
||||
ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
|
||||
errmsg("you cannot sync metadata to a non-existent node"),
|
||||
errhint("First, add the node with SELECT master_add_node(%s,%d)",
|
||||
errhint("First, add the node with SELECT master_add_node(\'%s\',%d)",
|
||||
nodeNameString, nodePort)));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue