Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
cfe71bd3
Commit
cfe71bd3
authored
18 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add URL for ISO date/time syntax:
> >
http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php
>
parent
28b0d6bf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/TODO
+4
-1
4 additions, 1 deletion
doc/TODO
doc/src/FAQ/TODO.html
+25
-21
25 additions, 21 deletions
doc/src/FAQ/TODO.html
with
29 additions
and
22 deletions
doc/TODO
+
4
−
1
View file @
cfe71bd3
...
...
@@ -2,7 +2,7 @@
PostgreSQL TODO List
====================
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Last updated: Fri Jun 16
00:04:49
EDT 2006
Last updated: Fri Jun 16
12:59:22
EDT 2006
The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html.
...
...
@@ -255,6 +255,9 @@ Data Types
o Fix interval display to support values exceeding 2^31 hours
o Add overflow checking to timestamp and interval arithmetic
o Add ISO INTERVAL handling
http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php
o -Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO
SECOND
o Support ISO INTERVAL syntax if units cannot be determined from
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/TODO.html
+
25
−
21
View file @
cfe71bd3
...
...
@@ -8,7 +8,7 @@
<body
bgcolor=
"#FFFFFF"
text=
"#000000"
link=
"#FF0000"
vlink=
"#A00000"
alink=
"#0000FF"
>
<h1><a
name=
"section_1"
>
PostgreSQL TODO List
</a></h1>
<p>
Current maintainer: Bruce Momjian (
<a
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</a>
)
<br/>
Last updated: Fri Jun 16
00:04:49
EDT 2006
Last updated: Fri Jun 16
12:59:22
EDT 2006
</p>
<p>
The most recent version of this document can be viewed at
<br/>
<a
href=
"http://www.postgresql.org/docs/faqs.TODO.html"
>
http://www.postgresql.org/docs/faqs.TODO.html
</a>
.
...
...
@@ -233,10 +233,14 @@ first.
</li><li>
Fix interval display to support values exceeding 2^31 hours
</li><li>
Add overflow checking to timestamp and interval arithmetic
</li><li>
Add ISO INTERVAL handling
<ul>
<li>
-
<em>
Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO
</em>
</li></ul>
</li></ul>
<p>
<a
href=
"http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php"
>
http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php
</a>
</p>
<ul>
<li>
-
<em>
Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO
</em>
SECOND
</li><li>
Support ISO INTERVAL syntax if units cannot be determined from
</li><li>
Support ISO INTERVAL syntax if units cannot be determined from
the string, and are supplied after the string
<p>
The SQL standard states that the units after the string
specify the units of the string, e.g. INTERVAL '2' MINUTE
...
...
@@ -257,33 +261,33 @@ first.
range of units supported, e.g. PostgreSQL supports '1 year 1
hour', while the SQL standard does not.
</p>
</li><li>
Add support for year-month syntax, INTERVAL '50-6' YEAR TO MONTH
</li><li>
Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
</li><li>
Add support for year-month syntax, INTERVAL '50-6' YEAR TO MONTH
</li><li>
Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
INTERVAL MONTH), and this should return '12 months'
</li><li>
Round or truncate values to the requested precision, e.g.
</li><li>
Round or truncate values to the requested precision, e.g.
INTERVAL '11 months' AS YEAR should return one or zero
</li><li>
Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
</li></ul>
</li></ul>
</li><li>
Arrays
</li><li>
Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
<ul>
<li>
-
<em>
Allow NULLs in arrays
</em>
</li><li>
Delay resolution of array expression's data type so assignment
<li>
Arrays
<ul>
<li>
-
<em>
Allow NULLs in arrays
</em>
</li><li>
Delay resolution of array expression's data type so assignment
coercion can be performed on empty array expressions
</li></ul>
</li><li>
Binary Data
<ul>
<li>
Improve vacuum of large objects, like /contrib/vacuumlo?
</li><li>
Add security checking for large objects
</li><li>
Auto-delete large objects when referencing row is deleted
</li></ul>
</li><li>
Binary Data
<ul>
<li>
Improve vacuum of large objects, like /contrib/vacuumlo?
</li><li>
Add security checking for large objects
</li><li>
Auto-delete large objects when referencing row is deleted
<p>
/contrib/lo offers this functionality.
</p>
</li><li>
Allow read/write into TOAST values like large objects
</li><li>
Allow read/write into TOAST values like large objects
<p>
This requires the TOAST column to be stored EXTERNAL.
</p>
</li><li>
Add API for 64-bit large object access
</li><li>
Add API for 64-bit large object access
<p>
<a
href=
"http://archives.postgresql.org/pgsql-hackers/2005-09/msg00781.php"
>
http://archives.postgresql.org/pgsql-hackers/2005-09/msg00781.php
</a>
</p>
</li></ul>
</li></ul>
</li></ul>
<h1><a
name=
"section_5"
>
Functions
</a></h1>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment