fix: join on instanceIDs in queries (#4612)

This commit is contained in:
Livio Spring
2022-10-27 08:08:36 +02:00
committed by GitHub
parent d721f725fd
commit 441f215513
61 changed files with 555 additions and 1243 deletions

View File

@@ -21,7 +21,8 @@ const (
var (
failedEventsTable = table{
name: projection.FailedEventsTable,
name: projection.FailedEventsTable,
instanceIDCol: failedEventsColumnInstanceID,
}
FailedEventsColumnProjectionName = Column{
name: failedEventsColumnProjectionName,
@@ -39,10 +40,6 @@ var (
name: failedEventsColumnError,
table: failedEventsTable,
}
FailedEventsColumnInstanceID = Column{
name: failedEventsColumnInstanceID,
table: failedEventsTable,
}
)
type FailedEvents struct {