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
@Sql("select * from employee where name = /* employee.employeeName */'test'")
36
-
EmployeenoArgumentsUsedInSQLAnnotations(Employeeemployee,String <errordescr="There are unused parameters in the SQL [employeeName]">employeeName</error>);
35
+
@Sql("select * from employee where name = /* employee.employeeName */'test' and status = /* @doma.example.entity.Project@status */'status'")
ProjectselectOptionDoesNotCauseError(Employee <errordescr="There are unused parameters in the SQL [employee]">employee</error>,StringsearchName,SelectOptionsoptions);
43
46
44
47
@Select(strategy = SelectType.COLLECT)
45
-
ProjectcollectDoesNotCauseError(Employee <errordescr="There are unused parameters in the SQL [employee]">employee</error>,Integerid,Collector<Project, ?, Project> collector);
48
+
ProjectcollectDoesNotCauseError(Employee <errordescr="There are unused parameters in the SQL [employee]">employee</error>,Integerid,
49
+
Collector<Project, ?, Project> collector);
46
50
47
51
@Select
48
-
ProjectcollectDoesCauseError(Employee <errordescr="There are unused parameters in the SQL [employee]">employee</error>,StringsearchName,Collector<Project, ?, Project> <errordescr="There are unused parameters in the SQL [collector]">collector</error>);
52
+
ProjectcollectDoesCauseError(Employee <errordescr="There are unused parameters in the SQL [employee]">employee</error>,StringsearchName,
53
+
Collector<Project, ?, Project> <errordescr="There are unused parameters in the SQL [collector]">collector</error>);
0 commit comments