From c53c61a6a10e1aea5b7fbe0e3aa8ced488fa2564 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 21 Jul 2021 12:59:50 +0800 Subject: [PATCH] pass build --- integrations/processors_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") } }