中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PostgreSQL DBA(57) - Could not choose a best candidate operator

發布時間:2020-08-10 23:54:14 來源:ITPUB博客 閱讀:378 作者:husthxd 欄目:關系型數據庫

本節內容來源于客戶現場反饋的一個問題.
Question
創建了integer到text的cast后,為何執行字符串連接”||”操作報錯?


testdb=# drop table if exists t_cast ;
DROP TABLE
testdb=# create table t_cast (id int);
CREATE TABLE
testdb=# insert into t_cast values(1),(2),(3);
INSERT 0 3
testdb=# create cast(integer as text) with inout as implicit;
CREATE CAST
testdb=# select id||'X' from t_cast;
psql: ERROR:  operator is not unique: integer || unknown
LINE 1: select id||'X' from t_cast;
                 ^
HINT:  Could not choose a best candidate operator. You might need to add explicit type casts.

Answer
PostgreSQL處理操作符時分為以下兩個步驟:
1.從系統目錄pg_operator中找出匹配該操作符和操作數的候選函數(數據行);
2.根據隱式轉換規則選擇合適的operator.

原生PG
通過分析和跟蹤代碼,第一步,從pg_operator中選出的后續函數OID為374/2780


testdb=# select oid,oprname,oprleft::regtype,oprright::regtype 
testdb-# from pg_operator 
testdb-# where oid in (374,2780);
 oid  | oprname |   oprleft   | oprright 
------+---------+-------------+----------
  374 | ||      | anyelement  | anyarray
 2780 | ||      | anynonarray | text
(2 rows)

而’X’可視為text,最終PostgreSQL會選擇OID = 2780的operator,因此不會出錯.

創建integer -> text轉換
而創建了integer -> text的cast后,從pg_operator中選出的后續函數OID為654/2779/374/2780


testdb=# select oid,oprname,oprleft::regtype,oprright::regtype 
testdb-# from pg_operator 
testdb-# where oid in (654,2779,374,2780);
 oid  | oprname |   oprleft   |  oprright   
------+---------+-------------+-------------
  374 | ||      | anyelement  | anyarray
  654 | ||      | text        | text
 2779 | ||      | text        | anynonarray
 2780 | ||      | anynonarray | text
(4 rows)

因為integer可以轉換為text,PostgreSQL無法在2779和2780之間無法做出選擇,因此出現錯誤:Could not choose a best candidate operator.

參考資料
PostgreSQL 源碼解讀(209)- 隱式類型轉換(func_select_candidate)
PostgreSQL 源碼解讀(210)- 隱式類型轉換(func_match_argtypes)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屏山县| 奈曼旗| 得荣县| 荆州市| 华阴市| 莒南县| 永清县| 桐柏县| 五大连池市| 民权县| 庄浪县| 荣昌县| 方山县| 博客| 长宁区| 凤山县| 浑源县| 象山县| 靖西县| 民丰县| 丰宁| 永和县| 敦煌市| 白水县| 江北区| 甘德县| 息烽县| 云安县| 青铜峡市| 安平县| 贡觉县| 马鞍山市| 东山县| 嘉善县| 隆昌县| 四会市| 达州市| 乡城县| 崇州市| 上栗县| 锦屏县|