File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ CREATE VIEW all_jobs_log AS
182
182
coalesce(c .id , l .cron ) as cron,
183
183
c .node as node,
184
184
l .start_at as scheduled_at,
185
- coalesce( c .name , ' --DELETED-- ' ) as name,
185
+ c .name as name,
186
186
c .comments as comments,
187
187
c .do_sql as commands,
188
188
c .executor as run_as,
@@ -213,7 +213,7 @@ CREATE VIEW jobs_log AS
213
213
coalesce(c .id , l .cron ) as cron,
214
214
c .node as node,
215
215
l .start_at as scheduled_at,
216
- coalesce( c .name , ' --DELETED-- ' ) as name,
216
+ c .name as name,
217
217
c .comments as comments,
218
218
c .do_sql as commands,
219
219
c .executor as run_as,
@@ -758,7 +758,7 @@ BEGIN
758
758
END IF;
759
759
760
760
IF params?' comments' THEN
761
- name := params- >> ' comments' ;
761
+ comments := params- >> ' comments' ;
762
762
END IF;
763
763
764
764
IF params?' max_run_time' THEN
You can’t perform that action at this time.
0 commit comments