Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
fbab5052
Commit
fbab5052
authored
Nov 17, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify TEXT cast working; spelling fixes to release notes.
parent
6f4cfe48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+8
-10
No files found.
doc/src/sgml/release.sgml
View file @
fbab5052
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.54
2 2007/11/16 17:22:21
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.54
3 2007/11/17 15:17:16
momjian Exp $ -->
<!--
<!--
Typical markup:
Typical markup:
...
@@ -26,7 +26,7 @@ non-ASCII characters convert to HTML4 entity (&) escapes
...
@@ -26,7 +26,7 @@ non-ASCII characters convert to HTML4 entity (&) escapes
wrap long lines
wrap long lines
For new features, add links to the documentation sections. Use </link>
For new features, add links to the documentation sections. Use </link>
so that
p
erl can remove it so HISTORY.html can be created with no
so that
P
erl can remove it so HISTORY.html can be created with no
links to the main documentation. This was added only in 8.2, so don't
links to the main documentation. This was added only in 8.2, so don't
do it for earlier branch release files.
do it for earlier branch release files.
...
@@ -257,10 +257,9 @@ do it for earlier branch release files.
...
@@ -257,10 +257,9 @@ do it for earlier branch release files.
<para>
<para>
Previously, a function or operator that took a <type>TEXT</>
Previously, a function or operator that took a <type>TEXT</>
parameter used to automatically cast a non-<type>TEXT</> value to
parameter used to automatically cast a non-<type>TEXT</> value to
<type>TEXT</> and call the function or operator (assuming there was
<type>TEXT</> and call the function or operator, if needed. This
no other matching function or operator). That no longer happens
no longer happens and an explicit cast to <type>TEXT</> is now
and an explicit cast to <type>TEXT</> is now required. For example,
required. For example, these expressions now throw an error:
these expressions now throw an error:
<programlisting>
<programlisting>
substr(current_date, 1, 1);
substr(current_date, 1, 1);
...
@@ -281,8 +280,7 @@ substr(current_date::text, 1, 1);
...
@@ -281,8 +280,7 @@ substr(current_date::text, 1, 1);
<type>CHAR</> and <type>VARCHAR</> still cast to <type>TEXT</>
<type>CHAR</> and <type>VARCHAR</> still cast to <type>TEXT</>
automatically. Concatenation (<literal>||</>) with non-<type>TEXT</>
automatically. Concatenation (<literal>||</>) with non-<type>TEXT</>
types is still automatically cast, assuming one of the parameters
types is still automatically cast, assuming one of the parameters
is textual. While this change will require additional casts for
is textual. This change was made to reduce unexpected behavior.
some queries, it also eliminates some unusual behavior.
</para>
</para>
<para>
<para>
...
@@ -497,7 +495,7 @@ substr(current_date::text, 1, 1);
...
@@ -497,7 +495,7 @@ substr(current_date::text, 1, 1);
<listitem>
<listitem>
<para>
<para>
<command>ROLLBACK</> outside a mult-statement transaction now
<command>ROLLBACK</> outside a mult
i
-statement transaction now
issues a <literal>NOTICE</> instead of <literal>WARNING</> (Bruce)
issues a <literal>NOTICE</> instead of <literal>WARNING</> (Bruce)
(Tom)
(Tom)
</para>
</para>
...
@@ -1087,7 +1085,7 @@ substr(current_date::text, 1, 1);
...
@@ -1087,7 +1085,7 @@ substr(current_date::text, 1, 1);
<literal>ASC</>/<literal>DESC</> specifiers could not fully use
<literal>ASC</>/<literal>DESC</> specifiers could not fully use
an index. Now an index can be fully used in such cases if the
an index. Now an index can be fully used in such cases if the
index was created with matching
index was created with matching
<literal>ASC</>/<literal>DESC</> specifictions.
<literal>ASC</>/<literal>DESC</> specific
a
tions.
</para>
</para>
</listitem>
</listitem>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment