This element has not been migrated to DataJoint 2.x. DataJoint no longer supports
pre-2.x, all schemas should be migrated, and a schema is either 2.x or pre-2.x — the
two are not interoperable.
Findings below come from running 2.x's own declaration parser over every attribute
declared in this package, so the counts are exact rather than estimated.
Silent data loss — 14 longblob attributes
Under 2.x a bare longblob is a raw binary column, not a DataJoint blob. Inserting a
numpy array into one stores str(array) — numpy's text repr, with the middle elided
for large arrays — and nothing raises on insert or on fetch. dtype and shape are
gone, and the values are not recoverable from the database afterwards.
This element declares 14 such attributes. The fix is to declare <blob>; the
underlying MySQL column type is longblob either way, so it is a definition edit and
not a table migration — as long as it happens before rows are written under 2.x.
Hard failures at declaration
These raise DataJointError under 2.x, so the affected tables cannot be declared at all:
| spelling |
count |
|
attach |
1 |
→ <attach> |
Also needed
- Native numeric types (12
int/smallint → int32/int16, 35 float → float32). These work correctly under 2.x —
no corruption — but they are native types that warn at declaration and are not
portable across backends. Worth converting while the files are open.
dj.schema → dj.Schema (4 call sites). dj.schema was removed in 2.x;
importing the module raises AttributeError before any table is declared.
- Raise the DataJoint floor —
setup.py datajoint>=0.14.6 → datajoint>=2.3. The unpinned
floor is why a fresh install resolves 2.x today and hits all of the above.
Testing
This repo has a tests/ directory, which is a real advantage — please extend it to
cover the converted types as part of the migration.
How to do it
Work from Migrate to DataJoint 2.0.
It gives the full legacy → 2.0 type mapping, explains the :<blob>: column-comment
marker that is the mechanism behind the blob problem, and lays out the four phases.
This issue is Phase I — code only, against empty _v2 schemas, with no impact on
existing data. Migrating existing data is Phase III and is tracked separately.
Related: the upstream guard that would have made this loud instead of silent is
datajoint/datajoint-python#1527. The same migration is
underway across the other elements.
This element has not been migrated to DataJoint 2.x. DataJoint no longer supports
pre-2.x, all schemas should be migrated, and a schema is either 2.x or pre-2.x — the
two are not interoperable.
Findings below come from running 2.x's own declaration parser over every attribute
declared in this package, so the counts are exact rather than estimated.
Silent data loss — 14
longblobattributesUnder 2.x a bare
longblobis a raw binary column, not a DataJoint blob. Inserting anumpy array into one stores
str(array)— numpy's text repr, with the middle elidedfor large arrays — and nothing raises on insert or on fetch. dtype and shape are
gone, and the values are not recoverable from the database afterwards.
This element declares 14 such attributes. The fix is to declare
<blob>; theunderlying MySQL column type is
longblobeither way, so it is a definition edit andnot a table migration — as long as it happens before rows are written under 2.x.
Hard failures at declaration
These raise
DataJointErrorunder 2.x, so the affected tables cannot be declared at all:attach<attach>Also needed
int/smallint→int32/int16, 35float→float32). These work correctly under 2.x —no corruption — but they are native types that warn at declaration and are not
portable across backends. Worth converting while the files are open.
dj.schema→dj.Schema(4 call sites).dj.schemawas removed in 2.x;importing the module raises
AttributeErrorbefore any table is declared.setup.pydatajoint>=0.14.6→datajoint>=2.3. The unpinnedfloor is why a fresh install resolves 2.x today and hits all of the above.
Testing
This repo has a
tests/directory, which is a real advantage — please extend it tocover the converted types as part of the migration.
How to do it
Work from Migrate to DataJoint 2.0.
It gives the full legacy → 2.0 type mapping, explains the
:<blob>:column-commentmarker that is the mechanism behind the blob problem, and lays out the four phases.
This issue is Phase I — code only, against empty
_v2schemas, with no impact onexisting data. Migrating existing data is Phase III and is tracked separately.
Related: the upstream guard that would have made this loud instead of silent is
datajoint/datajoint-python#1527. The same migration is
underway across the other elements.