Skip to content

Commit 0c3b35f

Browse files
author
Johannes Otepka
committed
support of label in sqlitedb added
1 parent 705a7b5 commit 0c3b35f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ipyparallel/controller/sqlitedb.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ class SQLiteDB(BaseDB):
155155
'error',
156156
'stdout',
157157
'stderr',
158+
'label',
158159
]
159160
)
160161
# sqlite datatypes for checking that db is current format
@@ -182,6 +183,7 @@ class SQLiteDB(BaseDB):
182183
'error': 'text',
183184
'stdout': 'text',
184185
'stderr': 'text',
186+
'label': 'text',
185187
}
186188
)
187189

@@ -303,7 +305,8 @@ def _init_db(self):
303305
execute_result text,
304306
error text,
305307
stdout text,
306-
stderr text)
308+
stderr text,
309+
label text)
307310
"""
308311
)
309312
self._db.commit()

0 commit comments

Comments
 (0)