diff --git a/integrations/processors_test.go b/integrations/processors_test.go index 33c71edc..34c3aa59 100644 --- a/integrations/processors_test.go +++ b/integrations/processors_test.go @@ -891,7 +891,7 @@ type AfterInsertStruct struct { } func (a *AfterInsertStruct) AfterInsert() { - if a.Dialect.Features().SupportReturnIDWhenInsert && a.Id == 0 { + if a.Id == 0 { panic("a.Id") } }