응답형 댓글의 잘못된 반업데이트 로직 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4299 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-06-19 04:01:16 +00:00
parent 85f0dabdd5
commit 8b49f6fc57
5 changed files with 42 additions and 12 deletions

View file

@ -1,11 +1,14 @@
<query id="getCommentListItem" action="select">
<tables>
<table name="comments" />
<table name="comments_list" />
</tables>
<columns>
<column name="*" />
<column name="comments.parent_srl" />
<column name="comments_list.*" />
</columns>
<conditions>
<condition operation="equal" column="comment_srl" var="comment_srl" notnull="notnull" />
<condition operation="equal" column="comments.comment_srl" var="comment_srl" notnull="notnull" />
<condition operation="equal" column="comments.comment_srl" default="comments_list.comment_srl" notnull="notnull" pipe="and" />
</conditions>
</query>