Ming LI created HAWQ-232:
----------------------------
Summary: Crash on INSERT into big partition table will cause a
long time recovery
Key: HAWQ-232
URL: https://issues.apache.org/jira/browse/HAWQ-232
Project: Apache HAWQ
Issue Type: Bug
Components: Transaction
Reporter: Ming LI
Assignee: Lei Chang
The sample testcase is below:
DROP TABLE integer_part1;
CREATE TABLE integer_part1 (a int, b int, c int)
WITH (appendonly=true, compresslevel=5)
partition by range (a)
(
partition aa start (0) end (1000) every (1)
);
CHECKPOINT;
insert into integer_part1 select i,i,i from generate_series(0, 999) i;
-- run shell: killall -9 postgres
-- Then restart hawq.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)