@@ -780,14 +780,14 @@ CREATE TABLE hash_parted (
780
780
CREATE TABLE hpart_1 PARTITION OF hash_parted FOR VALUES WITH (MODULUS 10, REMAINDER 0);
781
781
CREATE TABLE hpart_2 PARTITION OF hash_parted FOR VALUES WITH (MODULUS 50, REMAINDER 1);
782
782
CREATE TABLE hpart_3 PARTITION OF hash_parted FOR VALUES WITH (MODULUS 200, REMAINDER 2);
783
- -- modulus 25 is factor of modulus of 50 but 10 is not factor of 25.
783
+ -- modulus 25 is factor of modulus of 50 but 10 is nota factor of 25.
784
784
CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES WITH (MODULUS 25, REMAINDER 3);
785
785
ERROR: every hash partition modulus must be a factor of the next larger modulus
786
786
DETAIL: The new modulus 25 is not divisible by 10, the modulus of existing partition "hpart_1".
787
- -- previous modulus 50 is factor of 150 but this modulus is not factor of next modulus 200.
787
+ -- previous modulus 50 is factor of 150 but this modulus is nota factor of next modulus 200.
788
788
CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES WITH (MODULUS 150, REMAINDER 3);
789
789
ERROR: every hash partition modulus must be a factor of the next larger modulus
790
- DETAIL: The new modulus 150 is not factor of 200, the modulus of existing partition "hpart_3".
790
+ DETAIL: The new modulus 150 is nota factor of 200, the modulus of existing partition "hpart_3".
791
791
-- trying to specify range for the hash partitioned table
792
792
CREATE TABLE fail_part PARTITION OF hash_parted FOR VALUES FROM ('a', 1) TO ('z');
793
793
ERROR: invalid bound specification for a hash partition