datajoint-python icon indicating copy to clipboard operation
datajoint-python copied to clipboard

Relational data pipelines for the science lab

Results 152 datajoint-python issues
Sort by recently updated
recently updated
newest added

External store configuration is currently handled exclusively via dj.conf - This has at least some drawbacks: 1) Store configuration must be separately enabled for all users. This is cumbersome and...

needs-discussion

Consider the following table definition: ``` @schema class ProjectorColor(dj.Lookup): definition = """ # color options for projector channels color_id : tinyint # color id --- color : varchar(32) # color...

enhancement

Test: ```python def init_table(): import datajoint as dj schema = dj.schema('test_db') @schema class Person(dj.Manual): definition = """ person_id : int ---- full_name : varchar(60) """ Person.insert(( (0, 'Raphael Guzman'), (1,...

bug
needs-discussion

The currently implemented rule is that all the namesake attributes must be be part of the primary key in either of the operands. The documented and intended behavior is: ```All...

Docs

For many `char` and `varchar` variables, we want to stay with the compact `latin1` character set. `latin1` has been MySQL's default and DataJoint relied on the default character set. If...

enhancement
needs-discussion

Currently DataJoint supports straightforward logging of query activities via `dj.schema.log` tables. However, this is entirely DJ client side logic, meaning that the logging of activity only happens for queries issued...

The HTML tooltip that displays when you hover over the HTML rendered table in Jupyter Notebook doesn't work so well when the table is long horizontally such that the entire...

enhancement
good-first-issue

## Bug Report ### Description `{}` is not supported in attribute comments ### Error ``` @schema class Session(dj.Manual): definition = """ -> Subject session_start_time: datetime --- session_dir='' : varchar(32) #...

bug

For tables with complicated/expensive key-source to be computed. When multiple workers calling `populate()` on this table at the same time, the initial `key-source` calculation by all of these workers creates...

features

## Feature Request ### Problem Currently, users (along with admins) do not have a simple, intuitive means to perform restricted backups and restore operations. Workarounds typically place a large burden...

enhancement