Compare commits

..

No commits in common. "50d3f09b6ea4d78245c68461941cf624cc900d51" and "1e468ea4eace4ba150535fba9c752d9ea61e2bdf" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@
<listitem> <listitem>
<para> <para>
On <productname>FreeBSD</productname>, IDE drives can be queried using On <productname>FreeBSD</productname>, IDE drives can be queried using
<command>camcontrol identify</command> and write caching turned off using <command>atacontrol</command> and write caching turned off using
<literal>hw.ata.wc=0</literal> in <filename>/boot/loader.conf</filename>; <literal>hw.ata.wc=0</literal> in <filename>/boot/loader.conf</filename>;
SCSI drives can be queried using <command>camcontrol identify</command>, SCSI drives can be queried using <command>camcontrol identify</command>,
and the write cache both queried and changed using and the write cache both queried and changed using

View File

@ -1903,7 +1903,7 @@ WHERE p2.oid = p1.amhandler AND p1.amtype = 'i' AND
-- Check for table amhandler functions with the wrong signature -- Check for table amhandler functions with the wrong signature
SELECT p1.oid, p1.amname, p2.oid, p2.proname SELECT p1.oid, p1.amname, p2.oid, p2.proname
FROM pg_am AS p1, pg_proc AS p2 FROM pg_am AS p1, pg_proc AS p2
WHERE p2.oid = p1.amhandler AND p1.amtype = 't' AND WHERE p2.oid = p1.amhandler AND p1.amtype = 's' AND
(p2.prorettype != 'table_am_handler'::regtype (p2.prorettype != 'table_am_handler'::regtype
OR p2.proretset OR p2.proretset
OR p2.pronargs != 1 OR p2.pronargs != 1

View File

@ -1244,7 +1244,7 @@ WHERE p2.oid = p1.amhandler AND p1.amtype = 'i' AND
SELECT p1.oid, p1.amname, p2.oid, p2.proname SELECT p1.oid, p1.amname, p2.oid, p2.proname
FROM pg_am AS p1, pg_proc AS p2 FROM pg_am AS p1, pg_proc AS p2
WHERE p2.oid = p1.amhandler AND p1.amtype = 't' AND WHERE p2.oid = p1.amhandler AND p1.amtype = 's' AND
(p2.prorettype != 'table_am_handler'::regtype (p2.prorettype != 'table_am_handler'::regtype
OR p2.proretset OR p2.proretset
OR p2.pronargs != 1 OR p2.pronargs != 1