Skip to content

Commit

Permalink
test mermaid diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcmicu committed Aug 30, 2024
1 parent dd72d9d commit a4d0b8c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,20 @@ graph TD;
C-->D;
```

```mermaid
flowchart TD
node1[validate_cell_nulltype() for all cells]
modal1{if nulltype is None}
node2[validate_cell_rules()]
node3[validate_cell_datatype()]
modal2{sql type error?}
node4[validate_cell_foreign_constraints()]
node5[validate_cell_unique_constraints()]
node6[validate_tree_foreign_keys()]
node1 -- then, for each cell: --> node2
node5 -- then, over the table as a whole: --> node6
```

where thevalues
- The different cell validation functions

##### Batch vs. one-off validation

Expand Down

0 comments on commit a4d0b8c

Please sign in to comment.