百科 / 错误代码 / Class 22 数据异常
22035 no_sql_json_item
ERROR 源码确认 参考 未实测
- 条件名
no_sql_json_item- 宏名称
ERRCODE_NO_SQL_JSON_ITEM- 启用版本
- 12
- 状态
- 活跃
版本覆盖
速览
SQL/JSON path 没有找到请求的项。固定表达式执行路径报告 no SQL/JSON item found for specified path。
报文
ERROR 行为使用以下首要文本:
| 上下文 | 首要文本 |
|---|---|
| 有名的 JSON_TABLE/SQL/JSON 列 | no SQL/JSON item found for specified path of column "%s" |
| 没有列名 | no SQL/JSON item found for specified path |
报文模板
源码里的格式串,不是某一次运行的输出。%s 之类是占位符,实际报文会填入对象名与取值。适用范围一栏是核验时留下的原始英文记录,未经翻译。
no SQL/JSON item found for specified path of column "%s"
no SQL/JSON item found for specified path
含义
JSON path 可以产生空结果而不立即抛错。JsonPathQuery 和 JsonPathValue 会把零匹配标记为 empty;随后 SQL/JSON 表达式执行器应用 ON EMPTY,如果没有单独的 ON EMPTY 行为,也会使用非 ERROR 的 ON ERROR 行为。只有有效行为是 ERROR 时,执行器才报告 22035,并根据是否有列名选择对应首要文本。jsonb_path_query_first 等辅助函数可以直接把无匹配返回为 NULL,因此 22035 不是所有空 path 结果的统称。
诊断
记录操作、path、列名以及 ON EMPTY/ON ERROR 子句。区分预期的 NULL/默认回退和会进入 22035 的 ERROR 行为。strict 与 lax 的 path 求值以及 silent 模式可能改变结构问题是变成空结果还是被抑制的求值错误;多项结果和无效下标分别使用 22034 与 22033。
处理
如果必须找到项,修正 path、输入文档或列映射;如果无匹配是允许的,则使用文档规定的 ON EMPTY 行为,或使用明确把无匹配返回 NULL/空结果的辅助函数。不要用 wrapper 解决无项问题,wrapper 处理的是多项基数。如果 ERROR 发生在显式事务中,应先 ROLLBACK 或回滚到既有保存点再重试;自动提交可重试修正后的表达式。
版本
锁定目录从 12.0 起记录该条件;本页固定 SQL/JSON 执行器路径为 PostgreSQL 18.6。未声称本页有自然运行观察。
来源
- 上游源码 src/backend/utils/errcodes.txt 第 220 行
- 上游源码 src/backend/executor/execExprInterp.c 第 4940 行
- 上游源码 src/backend/executor/execExprInterp.c 第 5072 行
证据
断言
每条断言都写明了是怎么核实的,以及它不覆盖什么。这一层是核验时留下的原始英文记录,照原样呈现,未经翻译。
-
22035 is no_sql_json_item in SQLSTATE Class 22.
-
The fixed SQL/JSON expression executor marks an empty path result and applies ON EMPTY or a non-ERROR ON ERROR behavior; only the ERROR behavior reaches the 22035 ereport, with column-aware and column-less primary variants. JSON path query helpers that return NULL/empty results directly are therefore not blanket 22035 emitters.
-
The locked catalogue records 22035 from 12.0 without proving exact implementation introduction.
同类错误代码
Class 22 数据异常 下的其他成员。
22000data_exception22001string_data_right_truncation22002null_value_no_indicator_parameter22003numeric_value_out_of_range22004null_value_not_allowed22005error_in_assignment22007invalid_datetime_format22008datetime_field_overflow22009invalid_time_zone_displacement_value2200Bescape_character_conflict2200Cinvalid_use_of_escape_character2200Dinvalid_escape_octet2200Fzero_length_character_string2200Gmost_specific_type_mismatch2200Hsequence_generator_limit_exceeded2200Lnot_an_xml_document2200Minvalid_xml_document2200Ninvalid_xml_content2200Sinvalid_xml_comment2200Tinvalid_xml_processing_instruction22010invalid_indicator_parameter_value22011substring_error22012division_by_zero22013invalid_preceding_or_following_size22014invalid_argument_for_ntile_function22015interval_field_overflow22016invalid_argument_for_nth_value_function22018invalid_character_value_for_cast22019invalid_escape_character2201Binvalid_regular_expression2201Einvalid_argument_for_logarithm2201Finvalid_argument_for_power_function2201Ginvalid_argument_for_width_bucket_function2201Winvalid_row_count_in_limit_clause2201Xinvalid_row_count_in_result_offset_clause22021character_not_in_repertoire22022indicator_overflow22023invalid_parameter_value22024unterminated_c_string22025invalid_escape_sequence22026string_data_length_mismatch22027trim_error2202Earray_subscript_error2202Ginvalid_tablesample_repeat2202Hinvalid_tablesample_argument22030duplicate_json_object_key_value22031invalid_argument_for_sql_json_datetime_function22032invalid_json_text22033invalid_sql_json_subscript22034more_than_one_sql_json_item22036non_numeric_sql_json_item22037non_unique_keys_in_a_json_object22038singleton_sql_json_item_required22039sql_json_array_not_found2203Asql_json_member_not_found2203Bsql_json_number_not_found2203Csql_json_object_not_found2203Dtoo_many_json_array_elements2203Etoo_many_json_object_members2203Fsql_json_scalar_required2203Gsql_json_item_cannot_be_cast_to_target_type22P01floating_point_exception22P02invalid_text_representation22P03invalid_binary_representation22P04bad_copy_file_format22P05untranslatable_character22P06nonstandard_use_of_escape_character