Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a28338c

Browse files
author
Liudmila Mantrova
committed
DOC: fix tables markup in demo database chapter
1 parent 2f18c0b commit a28338c

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

doc/src/sgml/demodb-bookings.sgml

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -936,13 +936,17 @@ WHERE a.city IN (
936936
ORDER BY a.city, a.airport_code;
937937
</programlisting>
938938
<screen>
939-
code | airport_name | city | coordinates | timezone
940-
------+------------------------------------+-----------+-------------------------------------+---------------
941-
DME | Domodedovo International Airport | Moscow | (37.9062995910645,55.4087982177734) | Europe/Moscow
942-
SVO | Sheremetyevo International Airport | Moscow | (37.4146,55.972599) | Europe/Moscow
943-
VKO | Vnukovo International Airport | Moscow | (37.2615013123,55.5914993286) | Europe/Moscow
944-
ULV | Ulyanovsk Baratayevka Airport | Ulyanovsk | (48.2266998291,54.2682991028) | Europe/Samara
945-
ULY | Ulyanovsk East Airport | Ulyanovsk | (48.8027000427246,54.4010009765625) | Europe/Samara
939+
code | airport_name | city | coordinates | timezone
940+
------+------------------------------------+-----------+-------------------------------------+---
941+
DME | Domodedovo | Moscow | (37.9062995910645,55.4087982177734) | Europe/Moscow
942+
| International Airport | | |
943+
SVO | Sheremetyevo | Moscow | (37.4146,55.972599) | Europe/Moscow
944+
| International Airport | | |
945+
VKO | Vnukovo | Moscow | (37.2615013123,55.5914993286) | Europe/Moscow
946+
| International Airport | | |
947+
ULV | Ulyanovsk | Ulyanovsk | (48.2266998291,54.2682991028) | Europe/Samara
948+
| Baratayevka Airport | | |
949+
ULY | Ulyanovsk East Airport | Ulyanovsk | (48.8027000427246,54.4010009765625) | Europe/Samara
946950
(5 rows)
947951
</screen>
948952
</para>
@@ -955,22 +959,22 @@ ORDER BY a.city, a.airport_code;
955959

956960
<programlisting>
957961
SELECT r.arrival_city as city,
958-
r.arrival_airport as airport_code,
962+
r.arrival_airport as code,
959963
r.arrival_airport_name as airport_name,
960964
r.days_of_week,
961965
r.duration
962966
FROM routes r
963967
WHERE r.departure_city = 'Volgograd';
964968
</programlisting>
965969
<screen>
966-
city | airport_code | airport_name | days_of_week | duration
967-
-------------+--------------+------------------------------------+-----------------+----------
968-
Moscow | SVO | Sheremetyevo International Airport | {1,2,3,4,5,6,7} | 01:15:00
969-
Chelyabinsk | CEK | Chelyabinsk Balandino Airport | {1,2,3,4,5,6,7} | 01:50:00
970-
Rostov | ROV | Rostov-on-Don Airport | {1,2,3,4,5,6,7} | 00:30:00
971-
Moscow | VKO | Vnukovo International Airport | {1,2,3,4,5,6,7} | 01:10:00
972-
Cheboksary | CSY | Cheboksary Airport | {1,2,3,4,5,6,7} | 02:45:00
973-
Tomsk | TOF | Bogashevo Airport | {1} | 03:50:00
970+
city | code | airport_name | days_of_week | duration
971+
-------------+------+------------------------------------+-----------------+----------
972+
Moscow | SVO | Sheremetyevo International Airport | {1,2,3,4,5,6,7} | 01:15:00
973+
Chelyabinsk | CEK | Chelyabinsk Balandino Airport | {1,2,3,4,5,6,7} | 01:50:00
974+
Rostov | ROV | Rostov-on-Don Airport | {1,2,3,4,5,6,7} | 00:30:00
975+
Moscow | VKO | Vnukovo International Airport | {1,2,3,4,5,6,7} | 01:10:00
976+
Cheboksary | CSY | Cheboksary Airport | {1,2,3,4,5,6,7} | 02:45:00
977+
Tomsk | TOF | Bogashevo Airport | {1} | 03:50:00
974978
(6 rows)
975979
</screen>
976980
</para>

0 commit comments

Comments
 (0)