From e7a86280a6b27eb84ead26b0000a18cbd568e0db Mon Sep 17 00:00:00 2001 From: Eduardo Ohe Date: Tue, 16 Apr 2024 06:27:38 -0700 Subject: [PATCH] Add note on bq docs about skipped blocks (#1907) --- docs/2.build/6.data-infrastructure/big-query.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/2.build/6.data-infrastructure/big-query.md b/docs/2.build/6.data-infrastructure/big-query.md index 9db65cf2e8e..de2f2cefd90 100644 --- a/docs/2.build/6.data-infrastructure/big-query.md +++ b/docs/2.build/6.data-infrastructure/big-query.md @@ -102,4 +102,8 @@ The tables available in the NEAR Public Lakehouse are: - [Lake Data structures](./lake-data-structures/toc.mdx) - [Protocol specification](https://nomicon.io/) +:::note Additional information about the data + +- Skipped Blocks: NEAR Blockchain can contain skipped blocks, e.g. block `57730443`. For these cases we can find the block for the chunk data using the `prev_block_hash` column, e.g. `SELECT * FROM chunks c JOIN blocks b ON c.chunk.header.prev_block_hash = b.header.prev_hash`. + :::