OSDN Git Service

Add mention block size <= 32k.
authorBruce Momjian <bruce@momjian.us>
Fri, 9 Jul 1999 16:56:44 +0000 (16:56 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 9 Jul 1999 16:56:44 +0000 (16:56 +0000)
doc/TODO
src/include/config.h.in

index cb4b113..0798b7f 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -34,6 +34,8 @@ PARSER
 * INSERT ... SELECT ... GROUP BY groups by target columns not source columns
 * CREATE TABLE test (a char(5) DEFAULT text '', b int4) fails on INSERT
 * UNION with LIMIT fails
+* Unique index on base column not honored on inserts from inherited table
+  INSERT INTO inherit_table (unique_index_col) VALUES (dup) should fail
 
 VIEWS
 
index 20e5e5c..b4e8a48 100644 (file)
@@ -34,6 +34,7 @@
  * Size of a disk block --- currently, this limits the size of a tuple.
  * You can set it bigger if you need bigger tuples.
  */
+/* currently must be <= 32k bjm */
 #define BLCKSZ 8192
 
 /*