@@ -3549,11 +3549,9 @@ cast(-44 as bit(12)) <lineannotation>111111010100</lineannotation>
35493549
35503550 <note>
35513551 <para>
3552- Prior to <productname>PostgreSQL</productname> 8.0, casting an
3553- integer to <type>bit(n)</> would copy the leftmost <literal>n</>
3554- bits of the integer, whereas now it copies the rightmost <literal>n</>
3555- bits. Also, casting an integer to a bit string width wider than
3556- the integer itself will sign-extend on the left.
3552+ Casting an integer to <type>bit(n)</> copies the rightmost
3553+ <literal>n</> bits. Casting an integer to a bit string width wider
3554+ than the integer itself will sign-extend on the left.
35573555 </para>
35583556 </note>
35593557
@@ -6959,12 +6957,6 @@ SELECT EXTRACT(CENTURY FROM TIMESTAMP '2001-02-16 20:38:40');
69596957 If you disagree with this, please write your complaint to:
69606958 Pope, Cathedral Saint-Peter of Roma, Vatican.
69616959 </para>
6962-
6963- <para>
6964- <productname>PostgreSQL</productname> releases before 8.0 did not
6965- follow the conventional numbering of centuries, but just returned
6966- the year field divided by 100.
6967- </para>
69686960 </listitem>
69696961 </varlistentry>
69706962
@@ -7160,12 +7152,6 @@ SELECT EXTRACT(MILLENNIUM FROM TIMESTAMP '2001-02-16 20:38:40');
71607152 Years in the 1900s are in the second millennium.
71617153 The third millennium started January 1, 2001.
71627154 </para>
7163-
7164- <para>
7165- <productname>PostgreSQL</productname> releases before 8.0 did not
7166- follow the conventional numbering of millennia, but just returned
7167- the year field divided by 1000.
7168- </para>
71697155 </listitem>
71707156 </varlistentry>
71717157
@@ -10747,8 +10733,7 @@ nextval('foo'::text) <lineannotation><literal>foo</literal> is looked up at
1074710733 next <function>nextval</function> will return exactly the specified
1074810734 value, and sequence advancement commences with the following
1074910735 <function>nextval</function>. Furthermore, the value reported by
10750- <function>currval</> is not changed in this case (this is a change
10751- from pre-8.3 behavior). For example,
10736+ <function>currval</> is not changed in this case. For example,
1075210737
1075310738<screen>
1075410739SELECT setval('foo', 42); <lineannotation>Next <function>nextval</> will return 43</lineannotation>
0 commit comments