Add missing truncate for participant_events (#5117)

The missing truncate caused "Duplicate Submissions" after a reset in
between the performance tests.

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Gerolf Seitz 2020-03-23 09:06:02 +01:00 committed by GitHub
parent 2525a4610a
commit e82b8d743b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1723,6 +1723,7 @@ private class JdbcLedgerDao(
|truncate package_entries cascade;
|truncate participant_command_completions cascade;
|truncate participant_command_submissions cascade;
|truncate participant_events cascade;
""".stripMargin)
override def reset(): Future[Unit] =