File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5604,7 +5604,7 @@ substring('foobar' similar '#"o_b#"%' escape '#') <lineannotation>NULL</linea
5604
5604
<returnvalue>boolean</returnvalue>
5605
5605
</para>
5606
5606
<para>
5607
- String matches regular expression, case insensitively
5607
+ String matches regular expression, case- insensitively
5608
5608
</para>
5609
5609
<para>
5610
5610
<literal>'thomas' ~* 'T.*ma'</literal>
@@ -5632,7 +5632,7 @@ substring('foobar' similar '#"o_b#"%' escape '#') <lineannotation>NULL</linea
5632
5632
<returnvalue>boolean</returnvalue>
5633
5633
</para>
5634
5634
<para>
5635
- String does not match regular expression, case insensitively
5635
+ String does not match regular expression, case- insensitively
5636
5636
</para>
5637
5637
<para>
5638
5638
<literal>'thomas' !~* 'T.*ma'</literal>
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ CREATE TABLE weather (
134
134
differently than above, or even all on one line. Two dashes
135
135
(<quote><literal>--</literal></quote>) introduce comments.
136
136
Whatever follows them is ignored up to the end of the line. SQL
137
- is case insensitive about key words and identifiers, except
137
+ is case- insensitive about key words and identifiers, except
138
138
when identifiers are double-quoted to preserve the case (not done
139
139
above).
140
140
</para>
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ INSERT INTO MY_TABLE VALUES (3, 'hi there');
144
144
<primary>case sensitivity</primary>
145
145
<secondary>of SQL commands</secondary>
146
146
</indexterm>
147
- Key words and unquoted identifiers are case insensitive. Therefore:
147
+ Key words and unquoted identifiers are case- insensitive. Therefore:
148
148
<programlisting>
149
149
UPDATE MY_TABLE SET A = 5;
150
150
</programlisting>
You can’t perform that action at this time.
0 commit comments