Re: [HACKERS] alter-table-1 isolation test spec contains a duplicate step name

2015-08-14 Thread Robert Haas
On Fri, Aug 14, 2015 at 5:18 PM, Tom Lane wrote: > Robert Haas writes: >> Commit f14a6bbedb79adce2298d0d4f5e2abe8563e0eca added an isolation >> test, alter-table-1.spec, which reads in part: > >> session "s2" >> setup { BEGIN; } >> step "rx1" { SELECT * FROM b WHERE a_id = 1 LIMIT

Re: [HACKERS] alter-table-1 isolation test spec contains a duplicate step name

2015-08-14 Thread Tom Lane
Robert Haas writes: > Commit f14a6bbedb79adce2298d0d4f5e2abe8563e0eca added an isolation > test, alter-table-1.spec, which reads in part: > session "s2" > setup { BEGIN; } > step "rx1" { SELECT * FROM b WHERE a_id = 1 LIMIT 1; } > step "wx" { INSERT INTO b VALUES (0); } > ste

[HACKERS] alter-table-1 isolation test spec contains a duplicate step name

2015-08-14 Thread Robert Haas
Commit f14a6bbedb79adce2298d0d4f5e2abe8563e0eca added an isolation test, alter-table-1.spec, which reads in part: session "s2" setup { BEGIN; } step "rx1" { SELECT * FROM b WHERE a_id = 1 LIMIT 1; } step "wx" { INSERT INTO b VALUES (0); } step "rx1" { SELECT * FROM b WHER