Name change

This commit is contained in:
Yuriy Dupyn 2023-10-16 01:07:42 +02:00
parent 59c1fa92e1
commit 2a9220e55f

View file

@ -105,9 +105,9 @@ table : HashMap<Id, Row>
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<DbValue>
e.g. Row ~> vec![DbUUID 1, DbSTring "Yura"]
e.g. Row ~> vec![DbUUID 1, DbSTring "Alice"]
Vec<Vec<DbValue>>