File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424
2525create module BugTest258;
2626
27- create microflow BugTest258.MF_Original
28- returns string
29- (
30- set $return = 'original'
31- );
27+ create microflow BugTest258.MF_Original ()
28+ returns string as $result
29+ begin
30+ declare $result string = 'original';
31+ return $result;
32+ end;
33+ /
3234
3335-- Drop + recreate in the same session. Before the fix, this produced a
3436-- dangling Unit row with a fresh UUID and the project became unopenable in
3537-- Studio Pro. After the fix, the new microflow reuses the original UnitID.
3638drop microflow BugTest258.MF_Original;
3739
38- create or modify microflow BugTest258.MF_Original
39- returns string
40- (
41- set $return = 'replaced'
42- );
40+ create or modify microflow BugTest258.MF_Original ()
41+ returns string as $result
42+ begin
43+ declare $result string = 'replaced';
44+ return $result;
45+ end;
46+ /
4347
4448-- DESCRIBE must round-trip cleanly (no placeholder UUIDs leaking).
4549describe microflow BugTest258.MF_Original;
You can’t perform that action at this time.
0 commit comments