Parser fails for updates that include subqueries for source tables
還沒有人認領這個 Issue。
評估
研究方向
首先,透過 SQL 剖析器執行提供的 UPDATE 查詢,並將其輸出與 issue 中所示的預期 table、subquery、SET 和 WHERE 結構進行比較。追蹤包含 subquery 的 UPDATE 資料表參照如何被分詞及剖析,接著為此查詢新增或更新回歸測試,並驗證剖析後的結構。
由索引模型根據 Issue 內容生成。
描述
The SQL Parser fails to parse the following query:
update `table1` as e, (select * from table2) e2
set
e.`id` = e2.id,
where e.id=e2.id
It returns the output below. This appears to always be an issue when using subqueries in the table references.
[
{
"tables": [
{
"database": null,
"table": "table1",
"column": null,
"expr": "`table1`",
"alias": "e",
"function": null,
"subquery": null
}
],
"set": null,
"where": null,
"order": null,
"limit": null,
"options": {
"options": []
},
"first": 0,
"last": 10
},
{
"expr": [
{
"database": null,
"table": null,
"column": null,
"expr": "*",
"alias": null,
"function": null,
"subquery": null
}
],
"from": [
{
"database": null,
"table": "table2",
"column": null,
"expr": "table2",
"alias": null,
"function": null,
"subquery": null
}
],
"index_hints": null,
"partition": null,
"where": null,
"group": null,
"having": null,
"order": null,
"limit": null,
"procedure": null,
"into": null,
"join": null,
"union": [],
"end_options": null,
"options": {
"options": []
},
"first": 11,
"last": 21
},
{
"options": {
"options": []
},
"end_options": null,
"set": [
{
"column": "e.`id`",
"value": "e2.id"
}
],
"first": 22,
"last": 44,
"where": [
{
"identifiers": [
"e",
"id",
"e2"
],
"isOperator": false,
"expr": "e.id=e2.id"
}
]
}
]
- 主要語言
- PHP
- 星號
- 485
- 分支
- 119
- PR 合併指標
- 30 天內沒有已合併 PR
環境準備
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
phpmyadmin/sql-parser 的其他 Issue
-
難度 2/5 1-3 小時 新手友好度 68/100
phpmyadmin/sql-parser#655 · 1 個 reaction ·
-
難度 3/5 1-2 天 新手友好度 55/100
phpmyadmin/sql-parser#666 ·
-
難度 3/5 1-2 天 新手友好度 65/100
phpmyadmin/sql-parser#662 · 2 個 reaction ·
-
kind/support
難度 3/5 1-2 天 新手友好度 45/100
phpmyadmin/sql-parser#653 · 1 個 reaction ·
-
難度 3/5 1-2 天 新手友好度 70/100
phpmyadmin/sql-parser#649 ·
查看 phpmyadmin/sql-parser 的全部 Issue
相似的 Issue
-
bug
難度 2/5 1-3 小時 新手友好度 88/100
維護者通常 1 天內回覆
-
enhancement
難度 2/5 1-3 小時 新手友好度 68/100
-
sync-en
難度 2/5 1-3 小時 新手友好度 85/100
維護者通常 2 天內回覆
-
[Area] REST API [Type] Documentation Good First Issue
難度 1/5 1-3 小時 新手友好度 90/100
WordPress/presence-api#584 ·
維護者通常 1 天內回覆
-
難度 2/5 1-3 小時 新手友好度 86/100