Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6b8cc88

Browse files
committed
Remove tabs from SGML files.
1 parent554683f commit6b8cc88

File tree

13 files changed

+92
-92
lines changed

13 files changed

+92
-92
lines changed

‎doc/src/sgml/cube.sgml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -107,39 +107,39 @@
107107
<tbody>
108108
<row>
109109
<entry>n</entry>
110-
<entry>[0-9]+</entry>
110+
<entry>[0-9]+</entry>
111111
</row>
112112
<row>
113113
<entry>i</entry>
114-
<entry>nteger[+-]?{n}</entry>
114+
<entry>nteger[+-]?{n}</entry>
115115
</row>
116116
<row>
117117
<entry>real</entry>
118-
<entry>[+-]?({n}\.{n}?|\.{n})</entry>
118+
<entry>[+-]?({n}\.{n}?|\.{n})</entry>
119119
</row>
120120
<row>
121121
<entry>FLOAT</entry>
122-
<entry>({integer}|{real})([eE]{integer})?</entry>
122+
<entry>({integer}|{real})([eE]{integer})?</entry>
123123
</row>
124124
<row>
125-
<entry>O_BRACKET</entry>
126-
<entry>\[</entry>
125+
<entry>O_BRACKET</entry>
126+
<entry>\[</entry>
127127
</row>
128128
<row>
129129
<entry>C_BRACKET</entry>
130-
<entry>\]</entry>
130+
<entry>\]</entry>
131131
</row>
132132
<row>
133133
<entry>O_PAREN</entry>
134-
<entry>\(</entry>
134+
<entry>\(</entry>
135135
</row>
136136
<row>
137137
<entry>C_PAREN</entry>
138-
<entry>\)</entry>
138+
<entry>\)</entry>
139139
</row>
140140
<row>
141141
<entry>COMMA</entry>
142-
<entry>\,</entry>
142+
<entry>\,</entry>
143143
</row>
144144
</tbody>
145145
</tgroup>
@@ -280,28 +280,28 @@ numbers with more than about 16 significant digits will be truncated.
280280
</para>
281281

282282
<programlisting>
283-
a = bSame as
283+
a = bSame as
284284
</programlisting>
285285
<para>
286286
The cubements a and b are identical.
287287
</para>
288288

289289
<programlisting>
290-
a && bOverlaps
290+
a && bOverlaps
291291
</programlisting>
292292
<para>
293293
The cubements a and b overlap.
294294
</para>
295295

296296
<programlisting>
297-
a @> bContains
297+
a @> bContains
298298
</programlisting>
299299
<para>
300300
The cubement a contains the cubement b.
301301
</para>
302302

303303
<programlisting>
304-
a <@ bContained in
304+
a <@ bContained in
305305
</programlisting>
306306
<para>
307307
The cubement a is contained in b.
@@ -326,8 +326,8 @@ a <@ bContained in
326326
</para>
327327

328328
<programlisting>
329-
[a, b] < [c, d]Less than
330-
[a, b] > [c, d]Greater than
329+
[a, b] < [c, d]Less than
330+
[a, b] > [c, d]Greater than
331331
</programlisting>
332332

333333
<para>

‎doc/src/sgml/intagg.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CREATE TABLE one_to_many(left INT, right INT) ;
2222

2323
<programlisting>
2424
SELECT right.* from right JOIN one_to_many ON (right.id = one_to_many.right)
25-
WHERE one_to_many.left = item;
25+
WHERE one_to_many.left = item;
2626
</programlisting>
2727

2828
<para>
@@ -42,7 +42,7 @@ CREATE TABLE one_to_many(left INT, right INT) ;
4242

4343
<programlisting>
4444
CREATE TABLE summary as SELECT left, int_array_aggregate(right)
45-
AS right FROM one_to_many GROUP BY left;
45+
AS right FROM one_to_many GROUP BY left;
4646
</programlisting>
4747

4848
<para>
@@ -73,7 +73,7 @@ SELECT left, right FROM one_to_many WHERE left = item;
7373
<programlisting>
7474
SELECT right, count(right) FROM
7575
(
76-
SELECT left, int_array_enum(right) AS right FROM summary JOIN
76+
SELECT left, int_array_enum(right) AS right FROM summary JOIN
7777
(SELECT left FROM left_table WHERE left = item) AS lefts
7878
ON (summary.left = lefts.left )
7979
) AS list GROUP BY right ORDER BY count DESC ;

‎doc/src/sgml/isn.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<entry>
7878
<para>
7979
European Article Numbers. This type will always show the EAN13-display
80-
format. Te output function for this is <literal>ean13_out()</literal>
80+
format. Te output function for this is <literal>ean13_out()</literal>
8181
</para>
8282
</entry>
8383
</row>
@@ -87,7 +87,7 @@
8787
<entry>
8888
<para>
8989
For International Standard Book Numbers to be displayed in
90-
the new EAN13-display format.
90+
the new EAN13-display format.
9191
</para>
9292
</entry>
9393
</row>
@@ -106,7 +106,7 @@
106106
<entry>
107107
<para>
108108
For International Standard Serial Numbers to be displayed in the new
109-
EAN13-display format.
109+
EAN13-display format.
110110
</para>
111111
</entry>
112112
</row>
@@ -115,7 +115,7 @@
115115
<entry>
116116
<para>
117117
For International Standard Book Numbers to be displayed in the current
118-
short-display format.
118+
short-display format.
119119
</para>
120120
</entry>
121121
</row>
@@ -124,7 +124,7 @@
124124
<entry>
125125
<para>
126126
For International Standard Music Numbers to be displayed in the
127-
current short-display format.
127+
current short-display format.
128128
</para>
129129
</entry>
130130
</row>
@@ -447,7 +447,7 @@ INSERT INTO test VALUES('220500896?');
447447
INSERT INTO test VALUES('978055215372?');
448448

449449
SELECT issn('3251231?');
450-
SELECT ismn('979047213542?');
450+
SELECT ismn('979047213542?');
451451

452452
--Using the weak mode:
453453
SELECT isn_weak(true);

‎doc/src/sgml/oid2name.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,19 +126,19 @@ $ du [0-9]* |
126126
> do
127127
> echo "$SIZE `oid2name -q -d alvherre -i -f $FILENODE`"
128128
> done
129-
16 1155287 branches_pkey
130-
16 1155289 tellers_pkey
131-
17561 1155291 accounts_pkey
129+
16 1155287 branches_pkey
130+
16 1155289 tellers_pkey
131+
17561 1155291 accounts_pkey
132132
...
133133

134134
$ # same, but sort by size
135135
$ du [0-9]* | sort -rn | while read SIZE FN
136136
> do
137137
> echo "$SIZE `oid2name -q -d alvherre -f $FN`"
138138
> done
139-
133466 155173 accounts
140-
17561 1155291 accounts_pkey
141-
1177 16717 pg_proc_proname_args_nsp_index
139+
133466 155173 accounts
140+
17561 1155291 accounts_pkey
141+
1177 16717 pg_proc_proname_args_nsp_index
142142
...
143143

144144
$ # If you want to see what's in tablespaces, use the pg_tblspc directory

‎doc/src/sgml/pgbench.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ pgbench -i &lt;dbname&gt;
6565
names. Default test data contains:
6666
</para>
6767
<programlisting>
68-
table# of tuples
68+
table# of tuples
6969
-------------------------
70-
branches1
71-
tellers10
72-
accounts100000
73-
history0
70+
branches1
71+
tellers10
72+
accounts100000
73+
history0
7474
</programlisting>
7575
<para>
7676
You can increase the number of tuples by using -s option. branches,

‎doc/src/sgml/pgcrypto.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ md5 2345086 1 day 3 years
956956
</listitem>
957957
<listitem>
958958
<para>
959-
<literal>none</literal>- data must be multiple of cipher block size.
959+
<literal>none</literal>- data must be multiple of cipher block size.
960960
</para>
961961
</listitem>
962962
</itemizedlist>

‎doc/src/sgml/pgrowlocks.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ pgrowlocks(text) RETURNS pgrowlocks_type
2222
</para>
2323
<programlisting>
2424
CREATE TYPE pgrowlocks_type AS (
25-
locked_row TID,-- row TID
26-
lock_type TEXT,-- lock type
27-
locker XID,-- locking XID
28-
multi bool,-- multi XID?
29-
xids xid[],-- multi XIDs
30-
pids INTEGER[]-- locker's process id
25+
locked_row TID,-- row TID
26+
lock_type TEXT,-- lock type
27+
locker XID,-- locking XID
28+
multi bool,-- multi XID?
29+
xids xid[],-- multi XIDs
30+
pids INTEGER[]-- locker's process id
3131
);
3232
</programlisting>
3333

‎doc/src/sgml/pgstattuple.sgml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,41 +46,41 @@ free_percent | 1.95
4646
<thead>
4747
<row>
4848
<entry>Column</entry>
49-
<entry>Description</entry>
49+
<entry>Description</entry>
5050
</row>
5151
</thead>
5252
<tbody>
5353
<row>
5454
<entry>table_len</entry>
55-
<entry>physical relation length in bytes</entry>
55+
<entry>physical relation length in bytes</entry>
5656
</row>
5757
<row>
5858
<entry>tuple_count</entry>
59-
<entry>number of live tuples</entry>
59+
<entry>number of live tuples</entry>
6060
</row>
6161
<row>
6262
<entry>tuple_len</entry>
63-
<entry>total tuples length in bytes</entry>
63+
<entry>total tuples length in bytes</entry>
6464
</row>
6565
<row>
6666
<entry>tuple_percent</entry>
67-
<entry>live tuples in %</entry>
67+
<entry>live tuples in %</entry>
6868
</row>
6969
<row>
7070
<entry>dead_tuple_len</entry>
71-
<entry>total dead tuples length in bytes</entry>
71+
<entry>total dead tuples length in bytes</entry>
7272
</row>
7373
<row>
7474
<entry>dead_tuple_percent</entry>
75-
<entry>dead tuples in %</entry>
75+
<entry>dead tuples in %</entry>
7676
</row>
7777
<row>
7878
<entry>free_space</entry>
79-
<entry>free space in bytes</entry>
79+
<entry>free space in bytes</entry>
8080
</row>
8181
<row>
8282
<entry>free_percent</entry>
83-
<entry>free space in %</entry>
83+
<entry>free space in %</entry>
8484
</row>
8585
</tbody>
8686
</tgroup>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp