-
Notifications
You must be signed in to change notification settings - Fork 191
/
old_version_ss
80 lines (49 loc) · 2.94 KB
/
old_version_ss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
commit 5c6745e7c3f318300b42e9f29abb2e7ce8cbd873
Author: Yash-cor <[email protected]>
Date: Thu Jan 9 07:58:37 2025 +0530
Issue 31437 with keyword query error mysql (#34163)
* Added the With Segment Binder which improves the working of With Query and resolved the CheckTableExist error during With keyword Query execution
* Resolves Merge Conflicts
* Added unique Alias Exception while using Common Table Expression
* Fix Spotless error
* Added Release Notes
* Added SQL bind test case for WithSegmentBinder
* Added Release Notes
* Resolve Merge Conflict
* Added Release Notes
* Solved Spotless and Checkstyle error
* Changed the working for Unique Alias Name Exception handling for CTE's
* Update Release Notes
* Changed Release Notes to resolve merge conflict
* Sync With Master Branch
* Removed the Changes for with Clause in DeleteStatement will raise it with a different PR.
* Added SQLBinderIT test case for with clause.
* Updated documentation for the new Exception created
* Added e2e test case for with clause in e2e\sql\resources\cases\dql
* Corrected e2e test case for with clause
* Refactor to sync master branch
* Updates for e2e test case failure
* Changes made in e2e test case for db and tbl
* Changes in e2e test case
---------
Co-authored-by: Zhengqiang Duan <[email protected]>
diff --git a/docs/document/content/user-manual/error-code/sql-error-code.cn.md b/docs/document/content/user-manual/error-code/sql-error-code.cn.md
index a09db6bb79f..7c411a7986e 100644
--- a/docs/document/content/user-manual/error-code/sql-error-code.cn.md
+++ b/docs/document/content/user-manual/error-code/sql-error-code.cn.md
@@ -70,6 +70,7 @@ SQL 错误码以标准的 SQL State,Vendor Code 和详细错误信息提供,
| 12101 | 42000 | Can not accept SQL type '%s'. |
| 12200 | 42000 | Hint data source '%s' does not exist. |
| 12300 | 0A000 | DROP TABLE ... CASCADE is not supported. |
+| 12500 | 42000 | Not unique table/alias: '%s' |
### 连接
diff --git a/docs/document/content/user-manual/error-code/sql-error-code.en.md b/docs/document/content/user-manual/error-code/sql-error-code.en.md
index 282e53f2ea8..cde5dbb6cf5 100644
--- a/docs/document/content/user-manual/error-code/sql-error-code.en.md
+++ b/docs/document/content/user-manual/error-code/sql-error-code.en.md
@@ -70,6 +70,7 @@ SQL error codes provide by standard `SQL State`, `Vendor Code` and `Reason`, whi
| 12101 | 42000 | Can not accept SQL type '%s'. |
| 12200 | 42000 | Hint data source '%s' does not exist. |
| 12300 | 0A000 | DROP TABLE ... CASCADE is not supported. |
+| 12500 | 42000 | Not unique table/alias: '%s' |
### Connection