Skip to content

Commit 59b3bdf

Browse files
committed
Updates docs and test style
1 parent e1b4524 commit 59b3bdf

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* Bugfix - Fix sql code generation to comply with sql mode `ONLY_FULL_GROUP_BY` (#916) PR #965
1515
* Bugfix - Fix count for left-joined `QueryExpressions` (#951) PR #966
1616
* Bugfix - Fix assertion error when performing a union into a join (#930) PR #967
17+
* Update `~jobs.error_stack` from blob to mediumblob
1718

1819
### 0.13.2 -- May 7, 2021
1920
* Update `setuptools_certificate` dependency to new name `otumat`
@@ -247,7 +248,7 @@ Documentation and tutorials available at https://docs.datajoint.io and https://t
247248
* ERD() no longer text the context argument.
248249
* ERD.draw() now takes an optional context argument. By default uses the caller's locals.
249250

250-
### 0.3.2.
251+
### 0.3.2.
251252
* Fixed issue #223: `insert` can insert relations without fetching.
252253
* ERD() now takes the `context` argument, which specifies in which context to look for classes. The default is taken from the argument (schema or relation).
253254
* ERD.draw() no longer has the `prefix` argument: class names are shown as found in the context.

docs-parts/intro/Releases_lang1.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* Bugfix - Fix count for left-joined ``QueryExpressions`` (#951) PR #966
1414
* Bugfix - Fix assertion error when performing a union into a join (#930) PR #967
1515
* Bugfix - Fix regression issue with `DISTINCT` clause and `GROUP_BY` (#914) PR #963
16+
* Update `~jobs.error_stack` from blob to mediumblob
1617

1718
0.13.2 -- May 7, 2021
1819
----------------------

tests/test_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,5 @@ def test_long_error_stack():
140140
schema.schema.jobs.reserve(table_name, key)
141141
schema.schema.jobs.error(table_name, key, 'error message', long_error_stack)
142142
error_stack = schema.schema.jobs.fetch1('error_stack')
143-
assert_true(error_stack == long_error_stack, 'error stacks do not agree')
143+
assert error_stack == long_error_stack, 'error stacks do not agree'
144144
schema.schema.jobs.delete()

0 commit comments

Comments
 (0)