Add more tests for table alias handling (#1956 보완)

This commit is contained in:
Kijin Sung 2022-07-03 17:49:19 +09:00
parent b8641c3501
commit 8b611e9d08
3 changed files with 11 additions and 5 deletions

View file

@ -1,6 +1,6 @@
<query id="selectTest2" action="select">
<tables>
<table name="documents" />
<table name="documents" alias="d" />
</tables>
<columns>
<column name="readed_count + trackback_count" alias="count" />

View file

@ -1,6 +1,7 @@
<query id="updateTest" action="update">
<tables>
<table name="documents" />
<table name="comments" alias="c" />
</tables>
<columns>
<column name="member_srl" var="member_srl" filter="number" default="0" />