File tree 2 files changed +15
-6
lines changed
2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 2
2
PostgreSQL TODO List
3
3
====================
4
4
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
5
- Last updated: Mon Nov 28 21:02:36 EST 2005
5
+ Last updated: Thu Dec 1 17:07:44 EST 2005
6
6
7
7
The most recent version of this document can be viewed at
8
8
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -369,8 +369,13 @@ SQL Commands
369
369
information.
370
370
371
371
* Add a GUC variable to warn about non-standard SQL usage in queries
372
- * Add MERGE command that does UPDATE/DELETE, or on failure, INSERT (rules,
373
- triggers?)
372
+ * Add SQL-standard MERGE command, typically used to merge two tables
373
+
374
+ This is similar to UPDATE, then for unmatched rows, INSERT.
375
+ Whether concurrent access allows modifications which could cause
376
+ row loss is implementation independent.
377
+
378
+ * Add REPLACE or UPSERT command that does UPDATE, or on failure, INSERT
374
379
375
380
To implement this cleanly requires that the table have a unique index
376
381
so duplicate checking can be easily performed. It is possible to
Original file line number Diff line number Diff line change 8
8
< body bgcolor ="#FFFFFF " text ="#000000 " link ="#FF0000 " vlink ="#A00000 " alink ="#0000FF ">
9
9
< h1 > < a name ="section_1 "> PostgreSQL TODO List</ a > </ h1 >
10
10
< p > Current maintainer: Bruce Momjian (< a href ="mailto:pgman@candle.pha.pa.us "> pgman@candle.pha.pa.us</ a > )< br />
11
- Last updated: Mon Nov 28 21:02:36 EST 2005
11
+ Last updated: Thu Dec 1 17:07:44 EST 2005
12
12
</ p >
13
13
< p > The most recent version of this document can be viewed at< br />
14
14
< a href ="http://www.postgresql.org/docs/faqs.TODO.html "> http://www.postgresql.org/docs/faqs.TODO.html</ a > .
@@ -339,8 +339,12 @@ <h1><a name="section_8">SQL Commands</a></h1>
339
339
information.
340
340
</ p >
341
341
</ li > < li > Add a GUC variable to warn about non-standard SQL usage in queries
342
- </ li > < li > Add MERGE command that does UPDATE/DELETE, or on failure, INSERT (rules,
343
- triggers?)
342
+ </ li > < li > Add SQL-standard MERGE command, typically used to merge two tables
343
+ < p > This is similar to UPDATE, then for unmatched rows, INSERT.
344
+ Whether concurrent access allows modifications which could cause
345
+ row loss is implementation independent.
346
+ </ p >
347
+ </ li > < li > Add REPLACE or UPSERT command that does UPDATE, or on failure, INSERT
344
348
< p > To implement this cleanly requires that the table have a unique index
345
349
so duplicate checking can be easily performed. It is possible to
346
350
do it without a unique index if we require the user to LOCK the table
You can’t perform that action at this time.
0 commit comments