From be5fe1f663e092a38621ac353b085424fe67c4e4 Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Thu, 6 Jul 2023 11:12:00 +0900 Subject: [PATCH] [SPARK-44154][SQL][FOLLOWUP] Add `INVALID_BITMAP_POSITION` error into doc ### What changes were proposed in this pull request? This is a followup PR for https://github.com/apache/spark/pull/41623, because we add test for sync doc and `error-classes.json` after https://github.com/apache/spark/pull/41813 . We should add `INVALID_BITMAP_POSITION` (add on https://github.com/apache/spark/pull/41623) into doc. ### Why are the changes needed? CI fails without this PR. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Existing test. Closes #41870 from HyukjinKwon/SPARK-44154. Authored-by: Hyukjin Kwon Signed-off-by: Hyukjin Kwon --- docs/sql-error-conditions.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/sql-error-conditions.md b/docs/sql-error-conditions.md index 1b799ed7b67c8..b069f694ff3ed 100644 --- a/docs/sql-error-conditions.md +++ b/docs/sql-error-conditions.md @@ -738,6 +738,12 @@ The boundary `` is invalid: ``. For more details see [INVALID_BOUNDARY](sql-error-conditions-invalid-boundary.html) +### INVALID_BITMAP_POSITION + +[SQLSTATE: 22003](sql-error-conditions-sqlstates.html#class-22-data-exception) + +The 0-indexed bitmap position `` is out of bounds. The bitmap has `` bits (`` bytes). + ### INVALID_BUCKET_FILE SQLSTATE: none assigned