jverswijver

Results 7 comments of jverswijver

Yes, we should try to look for the config and if it is there we should load the log level for the user when we create the logger. Except of...

Seems like it is much easier to test python logging with pytest than with nosetest, another reason why we should consider switching to pytest.

The fix for this is likely the same as #916

@kabilar as it turns out this is a MariaDB specific error. MariaDB's implementation of the sql mode ONLY_FULL_GROUP_BY is incorrect when it comes to `select` on fields that are functionally...

It seems the MariaDB devs have known about this for a while but has not fixed it yet, https://jira.mariadb.org/browse/MDEV-11588

@dpeg22 We intentionally removed the `force=True` argument in datajoint `0.13.3`, I am currently evaluating whether we should reintroduce this. @dimitri-yatsenko Do you have any input on this?

Adding some documentation on reproducing this issue: getSchema.m: ```matlab function obj = getSchema persistent schemaObject if isempty(schemaObject) schemaObject = dj.Schema(dj.conn, 'test', 'test'); end obj = schemaObject; end ``` Person.m: ```matlab...