Commit 757349aa authored by KeYong's avatar KeYong

Merge remote-tracking branch 'origin/develop_station' into develop_station

parents d7289adb d7cbfb80
......@@ -50,14 +50,14 @@
END#
</sql>
</changeSet>
<changeSet author="suhuiguang" id="1623223065754-3" runAlways="true">
<changeSet author="suhuiguang" id="1623223065756-3" runAlways="true">
<comment>`getChildrenIdsByRootId`</comment>
<sql endDelimiter="#">
DROP FUNCTION IF EXISTS `getChildrenIdsByRootId`#
CREATE FUNCTION `getChildrenIdsByRootId` (`rootId` VARCHAR(100)) RETURNS varchar(1000)
CREATE FUNCTION `getChildrenIdsByRootId` (`rootId` VARCHAR(100)) RETURNS text
BEGIN
DECLARE ids VARCHAR(1000);
DECLARE ptemp VARCHAR(1000);
DECLARE ids text;
DECLARE ptemp text;
SELECT
GROUP_CONCAT(c.instanceId) INTO ids
FROM
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment