다음을 통해 공유


WKB_PARSE_ERROR 오류 클래스

SQLSTATE: 22023

WKB 구문 분석 오류: <parseError> 위치 <pos>

매개 변수

  • parseError: 발생한 구문 분석 오류의 종류에 대한 설명
  • pos: 구문 분석 오류가 발생한 WKB 이진 파일 문자열의 1부터 시작하는 위치입니다.

설명

일부 지리 공간 함수는 WKB(잘 알려진 이진 파일) 형식으로 예상되는 입력을 구문 분석할 때 이 오류를 반환할 수 있습니다. WKB에 대해 자세히 알아봅니다.

예제

-- Feeding an empty geometry collection in WKB format into the h3_polyfillash3string function (as opposed to a polygon or multipolygon).
> SELECT h3_polyfillash3string(unhex('010700000000'), 8)
  [WKB_PARSE_ERROR] Error parsing WKB: Invalid or unsupported type 7 at position 2

-- The input WKB corresponds to a polygon with 5 vertices in the exterior ring, but only 4 vertices are present in the description.
> SELECT h3_polyfillash3(unhex('0103000000010000000500000050fc1873d79a5ec0d0d556ec2fe342404182e2c7988f5dc0f46c567dae064140aaf1d24d628052c05e4bc8073d5b444050fc1873d79a5ec0d0d556ec2fe34240'), 2)
  [WKB_PARSE_ERROR] Error parsing WKB: Unexpected end of WKB buffer at position 78

오류 클래스를 내보내는 함수