mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
Add mention block size <= 32k.
This commit is contained in:
parent
b9c0096d97
commit
cd5dfb65a9
2
doc/TODO
2
doc/TODO
@ -34,6 +34,8 @@ PARSER
|
|||||||
* INSERT ... SELECT ... GROUP BY groups by target columns not source columns
|
* INSERT ... SELECT ... GROUP BY groups by target columns not source columns
|
||||||
* CREATE TABLE test (a char(5) DEFAULT text '', b int4) fails on INSERT
|
* CREATE TABLE test (a char(5) DEFAULT text '', b int4) fails on INSERT
|
||||||
* UNION with LIMIT fails
|
* 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
|
VIEWS
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
* Size of a disk block --- currently, this limits the size of a tuple.
|
* Size of a disk block --- currently, this limits the size of a tuple.
|
||||||
* You can set it bigger if you need bigger tuples.
|
* You can set it bigger if you need bigger tuples.
|
||||||
*/
|
*/
|
||||||
|
/* currently must be <= 32k bjm */
|
||||||
#define BLCKSZ 8192
|
#define BLCKSZ 8192
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user