blob: a689280e809ff71ea3d36e8f7aa0473ca77c8660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<refentry id="SQL-DROPNODE">
<indexterm zone="sql-dropnode">
<primary>DROP NODE</primary>
</indexterm>
<refmeta>
<refentrytitle>DROP NODE</refentrytitle>
<manvolnum>7</manvolnum>
<refmiscinfo>SQL - Language Statements</refmiscinfo>
</refmeta>
<refnamediv>
<refname>DROP NODE</refname>
<refpurpose>drop a cluster node</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
DROP NODE <replaceable class="parameter">nodename</replaceable>
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
<command>DROP NODE</command> is new SQL command specific
to <productname>Postgres-XL</productname> that deletes
cluster node information in catalog pgxc_node.
</para>
<para>
Node connection that has been deleted does not guarantee that connection
information cached in pooler is updated accordingly.
</para>
<para>
<command>DROP NODE</command> only runs on the local node where it is launched.
</para>
</refsect1>
<refsect1>
<title>Parameters</title>
<variablelist>
<varlistentry>
<term><replaceable class="parameter">nodename</replaceable></term>
<listitem>
<para>
The name of the selected cluster node.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>Examples</title>
<para>
Drop a cluster node.
<programlisting>
DROP NODE cluster_node;
</programlisting>
</para>
</refsect1>
<refsect1>
<title>Compatibility</title>
<para>
<command>DROP NODE</command> does not conform to the <acronym>
SQL</acronym> standards, it is a Postgres-XL specific command.
</para>
</refsect1>
</refentry>
|