File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66;SELECT
77 CASE
8- WHEN count(*) = 0 THEN raise_error(" Cannot move to breakpoint", " No breakpoints have been set yet" )
8+ WHEN count(*) = 0 THEN raise_error(' Cannot move to breakpoint', ' No breakpoints have been set yet' )
99 ELSE 1
1010 END
1111 FROM lnav_log_breakpoints
1212 UNION ALL
1313 SELECT
1414 CASE
15- WHEN name != 'log' THEN raise_error(" Cannot move to breakpoint", " Breakpoints are only supported in the LOG view" )
15+ WHEN name != 'log' THEN raise_error(' Cannot move to breakpoint', ' Breakpoints are only supported in the LOG view' )
1616 ELSE 1
1717 END
1818 FROM lnav_top_view;
3737 ORDER BY log_line $line_order
3838 LIMIT 1
3939
40- ;SELECT raise_error(" No more breakpoints after here" )
40+ ;SELECT raise_error(' No more breakpoints after here' )
4141 WHERE $log_line IS NULL
4242
4343:switch-to-view log
You can’t perform that action at this time.
0 commit comments