SCENARIO 1
I create a new taxon named Virgiana brandnewus as a species of genus Virgiana. The new species was then reflected in the Authorities table and its relationship to Virgiana in the Opinions table.
SELECT taxon_no, taxon_name FROM authorities WHERE taxon_name = 'Virgiana brandnewus';
| taxon_no |
taxon_name |
| 497316 |
Virgiana brandnewus |
SELECT child_no, child_spelling_no, status, parent_no, parent_spelling_no FROM opinions WHERE parent_no = '497316' OR child_no = '497316';
| child_no |
child_spelling_no |
status |
parent_no |
parent_spelling_no |
| 497316 |
497316 |
belongs to |
28329 |
28329 |
The above states that taxon_no 497316 (Virgiana brandnewus) belongs to taxon_no 28329 (Virgiana).
I next added an additional opinion that Virgiana brandnewus is an objective synonym of Virgiana falseii (taxon_no 497315), which added a new line to the Opinions table.
SELECT child_no, child_spelling_no, status, parent_no, parent_spelling_no FROM opinions WHERE parent_no = '497316' OR child_no = '497316';
| child_no |
child_spelling_no |
status |
parent_no |
parent_spelling_no |
| 497316 |
497316 |
belongs to |
28329 |
28329 |
| 497316 |
497316 |
subjective synonym of |
497315 |
497315 |
All of this follows logically from our understanding of Opinions, but there seems to be a completely different behavior for status = Misspellings. In this case, it seems they overwrite the old child_no, a process that they refer to as migration. I tested this by adding a new opinion that Virgiana brandnewus is a misspelling of Virgiana falseii.
SELECT child_no, child_spelling_no, status, parent_no, parent_spelling_no FROM opinions WHERE parent_spelling_no = '497316' OR child_spelling_no = '497316';
| child_no |
child_spelling_no |
status |
parent_no |
parent_spelling_no |
| 497315 |
497316 |
belongs to |
28329 |
28329 |
| 497315 |
497316 |
subjective synonym of |
497315 |
497315 |
| 497315 |
497316 |
misspelling of |
497315 |
497315 |
Notice that the child_no of ALL opinions for taxon 497316 was retroactively changed to 497315. The only record that these opinions had a different taxon_no originally is the child_spelling_no field.
SCENARIO 1
I create a new taxon named Virgiana brandnewus as a species of genus Virgiana. The new species was then reflected in the
Authoritiestable and its relationship to Virgiana in theOpinionstable.The above states that taxon_no 497316 (Virgiana brandnewus) belongs to taxon_no 28329 (Virgiana).
I next added an additional opinion that Virgiana brandnewus is an objective synonym of Virgiana falseii (taxon_no 497315), which added a new line to the
Opinionstable.All of this follows logically from our understanding of
Opinions, but there seems to be a completely different behavior forstatus=Misspellings. In this case, it seems they overwrite the old child_no, a process that they refer to as migration. I tested this by adding a new opinion that Virgiana brandnewus is a misspelling of Virgiana falseii.Notice that the child_no of ALL opinions for taxon 497316 was retroactively changed to 497315. The only record that these opinions had a different taxon_no originally is the
child_spelling_nofield.