We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
steps
1 parent b0f7382 commit 331ee5dCopy full SHA for 331ee5d
slurm2sql.py
@@ -896,6 +896,7 @@ def infer_type(cd):
896
db.execute('CREATE TABLE IF NOT EXISTS slurm (%s)'%create_columns)
897
db.execute('CREATE TABLE IF NOT EXISTS meta_slurm_lastupdate (id INTEGER PRIMARY KEY, update_time REAL)')
898
db.execute('CREATE VIEW IF NOT EXISTS allocations AS select * from slurm where JobStep is null;')
899
+ db.execute('CREATE VIEW IF NOT EXISTS steps AS select * from slurm where JobStep is not null;')
900
db.execute('CREATE VIEW IF NOT EXISTS eff AS select '
901
'JobIDnostep AS JobID, '
902
'max(User) AS User, '
0 commit comments