declare.py
This module hosts functions to convert DataJoint table definitions into mysql table definitions, and to declare the corresponding mysql tables.
is_foreign_key(line)
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
line |
a line from the table definition |
required |
Returns:
| Type | Description |
|---|---|
true if the line appears to be a foreign key definition |
Source code in datajoint/declare.py
153 154 155 156 157 158 159 160 | |
compile_foreign_key(line, context, attributes, primary_key, attr_sql, foreign_key_sql, index_sql)
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
line |
a line from a table definition |
required | |
context |
namespace containing referenced objects |
required | |
attributes |
list of attribute names already in the declaration -- to be updated by this function |
required | |
primary_key |
None if the current foreign key is made from the dependent section. Otherwise it is the list of primary key attributes thus far -- to be updated by the function |
required | |
attr_sql |
list of sql statements defining attributes -- to be updated by this function. |
required | |
foreign_key_sql |
list of sql statements specifying foreign key constraints -- to be updated by this function. |
required | |
index_sql |
list of INDEX declaration statements, duplicate or redundant indexes are ok. |
required |
Source code in datajoint/declare.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |
declare(full_table_name, definition, context)
¶
Parse declaration and generate the SQL CREATE TABLE code
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
full_table_name |
full name of the table |
required | |
definition |
DataJoint table definition |
required | |
context |
dictionary of objects that might be referred to in the table |
required |
Returns:
| Type | Description |
|---|---|
SQL CREATE TABLE statement, list of external stores used |
Source code in datajoint/declare.py
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | |
alter(definition, old_definition, context)
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
definition |
new table definition |
required | |
old_definition |
current table definition |
required | |
context |
the context in which to evaluate foreign key definitions |
required |
Returns:
| Type | Description |
|---|---|
string SQL ALTER command, list of new stores used for external storage |
Source code in datajoint/declare.py
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 | |
substitute_special_type(match, category, foreign_key_sql, context)
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
match |
dict containing with keys "type" and "comment" -- will be modified in place |
required | |
category |
attribute type category from TYPE_PATTERN |
required | |
foreign_key_sql |
list of foreign key declarations to add to |
required | |
context |
context for looking up user-defined attribute_type adapters |
required |
Source code in datajoint/declare.py
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | |
compile_attribute(line, in_key, foreign_key_sql, context)
¶
Convert attribute definition from DataJoint format to SQL
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
line |
attribution line |
required | |
in_key |
set to True if attribute is in primary key set |
required | |
foreign_key_sql |
the list of foreign key declarations to add to |
required | |
context |
context in which to look up user-defined attribute type adapterss |
required |
Returns:
| Type | Description |
|---|---|
(name, sql, is_external) -- attribute name and sql code for its declaration |
Source code in datajoint/declare.py
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 | |