From a4d0b8c9415c4fcef5efb7db075d4db1b7de2535 Mon Sep 17 00:00:00 2001 From: Michael Cuffaro Date: Fri, 30 Aug 2024 15:02:57 -0400 Subject: [PATCH] test mermaid diagram --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8058df7..0d1d905 100644 --- a/README.md +++ b/README.md @@ -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