Skip to content

Commit

Permalink
slurm2sql: eff view, don't get None as partition (select whatever is …
Browse files Browse the repository at this point in the history
…there)
  • Loading branch information
rkdarst committed Oct 23, 2024
1 parent 64d10c7 commit 9d5f742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slurm2sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ def infer_type(cd):
db.execute('CREATE VIEW IF NOT EXISTS eff AS select '
'JobIDnostep AS JobID, '
'max(User) AS User, '
'Partition, '
'max(Partition), '
'Account, '
'State, '
'Time, '
Expand Down

0 comments on commit 9d5f742

Please sign in to comment.