From bbd38af3a879604db2b455cbb2b4ec93275249fa Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 27 Sep 2011 16:08:31 -0300 Subject: Remove dependency on error ordering in isolation tests We now report errors reported by the just-unblocked and unblocking transactions identically; this should fix relatively common buildfarm failures reported by animals that are failing the "wrong" session. --- src/test/isolation/specparse.y | 1 + 1 file changed, 1 insertion(+) (limited to 'src/test/isolation/specparse.y') diff --git a/src/test/isolation/specparse.y b/src/test/isolation/specparse.y index 47bfbc4f39..b4db2f0002 100644 --- a/src/test/isolation/specparse.y +++ b/src/test/isolation/specparse.y @@ -123,6 +123,7 @@ step: $$ = malloc(sizeof(Step)); $$->name = $2; $$->sql = $3; + $$->errormsg = NULL; } ; -- cgit v1.2.1