You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
When running the StartNormalize activity in the PeerDB project (using the PostgresConnector), we encountered a runtime error due to a nil pointer dereference. This issue occurred repeatedly during normalization steps and appears to originate from normalize_stmt_generator.go and postgres.go within the Postgres connector logic.
Steps to Reproduce:
Run a workflow that triggers the StartNormalize activity in a Temporal setup.
Observe the workflow execution logs during the normalization phase.
The error runtime error: invalid memory address or nil pointer dereference appears consistently, halting the normalization process.
Expected Behavior:
The StartNormalize activity should execute successfully, generating all necessary normalization statements and completing without runtime panics.
Actual Behavior:
The workflow fails at the StartNormalize activity with a panic caused by a nil pointer dereference. The provided stack trace shows that generateFallbackStatements in normalize_stmt_generator.go:80 attempts to access an uninitialized object.
Description:
When running the
StartNormalize
activity in the PeerDB project (using thePostgresConnector
), we encountered a runtime error due to a nil pointer dereference. This issue occurred repeatedly during normalization steps and appears to originate fromnormalize_stmt_generator.go
andpostgres.go
within the Postgres connector logic.Steps to Reproduce:
StartNormalize
activity in a Temporal setup.runtime error: invalid memory address or nil pointer dereference
appears consistently, halting the normalization process.Expected Behavior:
The
StartNormalize
activity should execute successfully, generating all necessary normalization statements and completing without runtime panics.Actual Behavior:
The workflow fails at the
StartNormalize
activity with a panic caused by a nil pointer dereference. The provided stack trace shows thatgenerateFallbackStatements
innormalize_stmt_generator.go:80
attempts to access an uninitialized object.Relevant Logs (Redacted for Security):
Additional Context:
nil
before dereferencing objects ingenerateNormalizeStatements
orgenerateFallbackStatements
could be a potential fix.The text was updated successfully, but these errors were encountered: