We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
int
@Insert
Currently the @Insert only supports long and its boxed type in return value.
long
Declare methods like:
@Insert int[] insert(User[] users);
will got an error told you that int[] is not supported.
int[]
Therefore, there is a need to support types such as int, int[], Integer, Integer[], List<Integer> and others.
Integer
Integer[]
List<Integer>
The text was updated successfully, but these errors were encountered:
roll-w
When branches are created from issues, their pull requests are automatically linked.
Currently the
@Insert
only supportslong
and its boxed type in return value.Declare methods like:
will got an error told you that
int[]
is not supported.Therefore, there is a need to support types such as
int
,int[]
,Integer
,Integer[]
,List<Integer>
and others.The text was updated successfully, but these errors were encountered: