From 2a9220e55f28c122b668a57037e49a7eebec5331 Mon Sep 17 00:00:00 2001 From: Yuriy Dupyn <2153100+omedusyo@users.noreply.github.com> Date: Mon, 16 Oct 2023 01:07:42 +0200 Subject: [PATCH] Name change --- DESIGN.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DESIGN.md b/DESIGN.md index fe86d24..78c71a7 100644 --- a/DESIGN.md +++ b/DESIGN.md @@ -105,9 +105,9 @@ table : HashMap Vec<(Id, Row)>. -// suppose the row corresponds to 'INSERT 1, "Yura", 20.0 INTO persons;' +// suppose the row corresponds to 'INSERT 1, "Alice", 20.0 INTO persons;' Row ~> Vec -e.g. Row ~> vec![DbUUID 1, DbSTring "Yura"] +e.g. Row ~> vec![DbUUID 1, DbSTring "Alice"] Vec>