Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c0096 commit cd5dfb6Copy full SHA for cd5dfb6
doc/TODO
@@ -34,6 +34,8 @@ PARSER
34
* INSERT ... SELECT ... GROUP BY groups by target columns not source columns
35
* CREATE TABLE test (a char(5) DEFAULT text '', b int4) fails on INSERT
36
* 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
39
40
VIEWS
41
src/include/config.h.in
@@ -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
/*
0 commit comments