<term><varname>strict_multi_assignment</varname></term>
<listitem>
<para>
- Some <application>PL/PgSQL</application> commands allow assigning
+ Some <application>PL/pgSQL</application> commands allow assigning
values to more than one variable at a time, such as
<command>SELECT INTO</command>. Typically, the number of target
variables and the number of source variables should match, though
- <application>PL/PgSQL</application> will use <literal>NULL</literal>
+ <application>PL/pgSQL</application> will use <literal>NULL</literal>
for missing values and extra variables are ignored. Enabling this
- check will cause <application>PL/PgSQL</application> to throw a
+ check will cause <application>PL/pgSQL</application> to throw a
<literal>WARNING</literal> or <literal>ERROR</literal> whenever the
number of target variables and the number of source variables are
different.
<term><varname>too_many_rows</varname></term>
<listitem>
<para>
- Enabling this check will cause <application>PL/PgSQL</application> to
+ Enabling this check will cause <application>PL/pgSQL</application> to
check if a given query returns more than one row when an
<literal>INTO</literal> clause is used. As an <literal>INTO</literal>
statement will only ever use one row, having a query return multiple