From 66447b429be6fa4bfd26d00abc14515300fa0b81 Mon Sep 17 00:00:00 2001 From: IG Date: Mon, 13 Feb 2023 11:39:00 +0000 Subject: [PATCH] update doc --- docs/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/README.md b/docs/README.md index 6d658309..89373a8c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -147,6 +147,8 @@ What's going on?:?: 3. Row group is like a data partition inside the file. In this example we have just one, but you can create more if there are too many values that are hard to fit in computer memory. 4. Three calls to row group writer write out the columns. Note that those are performed sequentially, and in the same order as schema defines them. +Read more on writing [here](writing.md). + ### đŸ“–Reading Data Reading data also has three different approaches, so I'm going to unwrap them here in the same order as above.