Skip to content

Commit 7f7ca8c

Browse files
committed
Minor correction in the test case statement.
1 parent 4ae061f commit 7f7ca8c

File tree

1 file changed

+1
-1
lines changed
  • src/test/java/org/apache/ibatis/submitted/automapping

1 file changed

+1
-1
lines changed

src/test/java/org/apache/ibatis/submitted/automapping/Mapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<mapper namespace="org.apache.ibatis.submitted.automapping.Mapper">
2222

2323
<select id="getUser" resultMap="result">
24-
select * from users
24+
select * from users where id = #{id}
2525
</select>
2626

2727
<resultMap type="org.apache.ibatis.submitted.automapping.User" id="result" autoMapping="true">

0 commit comments

Comments
 (0)