@@ -3177,7 +3177,7 @@ CREATE TABLE person (
31773177);
31783178INSERT INTO person VALUES ('Moe', 'happy');
31793179SELECT * FROM person WHERE current_mood = 'happy';
3180- name | current_mood
3180+ name | current_mood
31813181------+--------------
31823182 Moe | happy
31833183(1 row)
@@ -3198,14 +3198,14 @@ SELECT * FROM person WHERE current_mood = 'happy';
31983198INSERT INTO person VALUES ('Larry', 'sad');
31993199INSERT INTO person VALUES ('Curly', 'ok');
32003200SELECT * FROM person WHERE current_mood > 'sad';
3201- name | current_mood
3201+ name | current_mood
32023202-------+--------------
32033203 Moe | happy
32043204 Curly | ok
32053205(2 rows)
32063206
32073207SELECT * FROM person WHERE current_mood > 'sad' ORDER BY current_mood;
3208- name | current_mood
3208+ name | current_mood
32093209-------+--------------
32103210 Curly | ok
32113211 Moe | happy
@@ -3214,7 +3214,7 @@ SELECT * FROM person WHERE current_mood > 'sad' ORDER BY current_mood;
32143214SELECT name
32153215FROM person
32163216WHERE current_mood = (SELECT MIN(current_mood) FROM person);
3217- name
3217+ name
32183218-------
32193219 Larry
32203220(1 row)
@@ -3253,7 +3253,7 @@ ERROR: operator does not exist: mood = happiness
32533253<programlisting>
32543254SELECT person.name, holidays.num_weeks FROM person, holidays
32553255 WHERE person.current_mood::text = holidays.happiness::text;
3256- name | num_weeks
3256+ name | num_weeks
32573257------+-----------
32583258 Moe | 4
32593259(1 row)
@@ -3982,7 +3982,7 @@ SELECT person.name, holidays.num_weeks FROM person, holidays
39823982<programlisting>
39833983SELECT macaddr8_set7bit('08:00:2b:01:02:03');
39843984<computeroutput>
3985- macaddr8_set7bit
3985+ macaddr8_set7bit
39863986-------------------------
39873987 0a:00:2b:ff:fe:01:02:03
39883988(1 row)
@@ -4124,7 +4124,7 @@ SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector;
41244124
41254125<programlisting>
41264126SELECT $$the lexeme ' ' contains spaces$$::tsvector;
4127- tsvector
4127+ tsvector
41284128-------------------------------------------
41294129 ' ' 'contains' 'lexeme' 'spaces' 'the'
41304130</programlisting>
@@ -4135,7 +4135,7 @@ SELECT $$the lexeme ' ' contains spaces$$::tsvector;
41354135
41364136<programlisting>
41374137SELECT $$the lexeme 'Joe''s' contains a quote$$::tsvector;
4138- tsvector
4138+ tsvector
41394139------------------------------------------------
41404140 'Joe''s' 'a' 'contains' 'lexeme' 'quote' 'the'
41414141</programlisting>
@@ -4165,7 +4165,7 @@ SELECT 'a:1 fat:2 cat:3 sat:4 on:5 a:6 mat:7 and:8 ate:9 a:10 fat:11 rat:12'::ts
41654165
41664166<programlisting>
41674167SELECT 'a:1A fat:2B,4C cat:5D'::tsvector;
4168- tsvector
4168+ tsvector
41694169----------------------------
41704170 'a':1A 'cat':5 'fat':2B,4C
41714171</programlisting>
@@ -4184,7 +4184,7 @@ SELECT 'a:1A fat:2B,4C cat:5D'::tsvector;
41844184
41854185<programlisting>
41864186SELECT 'The Fat Rats'::tsvector;
4187- tsvector
4187+ tsvector
41884188--------------------
41894189 'Fat' 'Rats' 'The'
41904190</programlisting>
@@ -4197,7 +4197,7 @@ SELECT 'The Fat Rats'::tsvector;
41974197
41984198<programlisting>
41994199SELECT to_tsvector('english', 'The Fat Rats');
4200- to_tsvector
4200+ to_tsvector
42014201-----------------
42024202 'fat':2 'rat':3
42034203</programlisting>
@@ -4239,17 +4239,17 @@ SELECT to_tsvector('english', 'The Fat Rats');
42394239
42404240<programlisting>
42414241SELECT 'fat & rat'::tsquery;
4242- tsquery
4242+ tsquery
42434243---------------
42444244 'fat' & 'rat'
42454245
42464246SELECT 'fat & (rat | cat)'::tsquery;
4247- tsquery
4247+ tsquery
42484248---------------------------
42494249 'fat' & ( 'rat' | 'cat' )
42504250
42514251SELECT 'fat & rat & ! cat'::tsquery;
4252- tsquery
4252+ tsquery
42534253------------------------
42544254 'fat' & 'rat' & !'cat'
42554255</programlisting>
@@ -4273,7 +4273,7 @@ SELECT 'fat:ab & cat'::tsquery;
42734273 to specify prefix matching:
42744274<programlisting>
42754275SELECT 'super:*'::tsquery;
4276- tsquery
4276+ tsquery
42774277-----------
42784278 'super':*
42794279</programlisting>
@@ -4290,7 +4290,7 @@ SELECT 'super:*'::tsquery;
42904290
42914291<programlisting>
42924292SELECT to_tsquery('Fat:ab & Cats');
4293- to_tsquery
4293+ to_tsquery
42944294------------------
42954295 'fat':AB & 'cat'
42964296</programlisting>
0 commit comments