Skip to content

Commit

Permalink
mk-sql: fix encoding in jobs area too
Browse files Browse the repository at this point in the history
Change-Id: I50f91c4ccc5b2e95679dd1e4bde07fa1c202abef
  • Loading branch information
s-kipnis committed Sep 19, 2024
1 parent 9124fa2 commit e9f0d9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/mk-sql/src/ms_sql/sqls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,9 @@ FROM dbo.sysjobs sj \
LEFT JOIN dbo.sysjobschedules sjs ON sj.job_id = sjs.job_id \
LEFT JOIN dbo.sysjobservers sjserver ON sj.job_id = sjserver.job_id \
LEFT JOIN dbo.sysschedules ss ON sjs.schedule_id = ss.schedule_id \
ORDER BY sj.name, \
sjs.next_run_date ASC, \
sjs.next_run_time ASC \
ORDER BY job_name, \
next_run_date ASC, \
next_run_time ASC \
";

pub const MIRRORING: &str = "SELECT @@SERVERNAME as server_name, \
Expand Down

0 comments on commit e9f0d9c

Please sign in to comment.