Skip to content

Commit cd5dfb6

Browse files
committed
Add mention block size <= 32k.
1 parent b9c0096 commit cd5dfb6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

doc/TODO

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ PARSER
3434
* INSERT ... SELECT ... GROUP BY groups by target columns not source columns
3535
* CREATE TABLE test (a char(5) DEFAULT text '', b int4) fails on INSERT
3636
* UNION with LIMIT fails
37+
* Unique index on base column not honored on inserts from inherited table
38+
INSERT INTO inherit_table (unique_index_col) VALUES (dup) should fail
3739

3840
VIEWS
3941

src/include/config.h.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* Size of a disk block --- currently, this limits the size of a tuple.
3535
* You can set it bigger if you need bigger tuples.
3636
*/
37+
/* currently must be <= 32k bjm */
3738
#define BLCKSZ 8192
3839

3940
/*

0 commit comments

Comments
 (0)