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
e34d442d
Commit
e34d442d
authored
Dec 19, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention fallback case for type coercion in description
of function resolution procedure.
parent
e4eb9104
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
6 deletions
+16
-6
doc/src/sgml/typeconv.sgml
doc/src/sgml/typeconv.sgml
+16
-6
No files found.
doc/src/sgml/typeconv.sgml
View file @
e34d442d
...
...
@@ -279,7 +279,7 @@ select "string"
category if any candidate accepts that category (this bias towards string
is appropriate since an unknown-type literal does look like a string).
Otherwise, if all the remaining candidates accept the same type category,
select that category; otherwise
raise an error
because
select that category; otherwise
fail
because
the correct choice cannot be deduced without more clues. Also note whether
any of the candidates accept a preferred datatype within the selected category.
Now discard operator candidates that do not accept the selected type category;
...
...
@@ -292,7 +292,7 @@ argument.
<para>
If only one candidate remains, use it. If no candidate or more than one
candidate remains,
then
raise an error
.
then
fail
.
</para>
</step>
</substeps>
...
...
@@ -488,7 +488,7 @@ select "string"
category if any candidate accepts that category (this bias towards string
is appropriate since an unknown-type literal does look like a string).
Otherwise, if all the remaining candidates accept the same type category,
select that category; otherwise
raise an error
because
select that category; otherwise
fail
because
the correct choice cannot be deduced without more clues. Also note whether
any of the candidates accept a preferred datatype within the selected category.
Now discard operator candidates that do not accept the selected type category;
...
...
@@ -501,11 +501,22 @@ argument.
<para>
If only one candidate remains, use it. If no candidate or more than one
candidate remains,
then
raise an error
.
then
fail
.
</para>
</step>
</substeps>
</step>
<step performance="required">
<para>
If no best match could be identified, see whether the function call appears
to be a trivial type coercion request. This happens if the function call
has just one argument and the function name is the same as the (internal)
name of some datatype. Furthermore, the function argument must be either
an unknown-type literal or a type that is binary-compatible with the named
datatype. When these conditions are met, the function argument is coerced
to the named datatype.
</para>
</step>
</procedure>
<sect2>
...
...
@@ -699,8 +710,7 @@ Otherwise, ignore the <type>unknown</type> inputs while choosing the type.
<step performance="required">
<para>
If the non-unknown inputs are not all of the same type category, raise an
error.
If the non-unknown inputs are not all of the same type category, fail.
</para></step>
<step performance="required">
...
...
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