Issue 491: 1.5.0.5 설치우 버그?

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9643 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ucorina 2011-10-13 14:53:30 +00:00
parent bddb968dbf
commit e8741e7cb6
4 changed files with 29 additions and 5 deletions

View file

@ -42,5 +42,14 @@
$this->_test($xml_file, $argsString, $expected);
}
function test_menu_updateMenuItemListorder(){
$xml_file = _TEST_PATH_ . "db/xml_query/mysql/data/menu.updateMenuItemListorder.xml";
$argsString = '$args->menu_srl = 10; $args->parent_srl = 11; $args->listorder = 12;';
$expected = 'update `xe_menu_item` as `menu_item`
set `listorder` = `listorder` - 1
where `menu_srl` = 10
and `parent_srl` = 11
and `listorder` <= 12';
$this->_test($xml_file, $argsString, $expected);
}
}

View file

@ -0,0 +1,13 @@
<query id="updateMenuItemListorder" action="update">
<tables>
<table name="menu_item" />
</tables>
<columns>
<column name="listorder" default="minus(1)" />
</columns>
<conditions>
<condition operation="equal" column="menu_srl" var="menu_srl" filter="number" notnull="notnull" />
<condition operation="equal" column="parent_srl" var="parent_srl" filter="number" notnull="notnull" pipe="and" />
<condition operation="less" column="listorder" var="listorder" filter="number" notnull="notnull" pipe="and" />
</conditions>
</query>