Skip to content
Merged
Changes from 30 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
dc7e21e
Updated the query-serving error code
vitess-bot[bot] Jan 30, 2025
1e8967c
Updated the query-serving error code
vitess-bot[bot] Jan 31, 2025
2972ddf
Updated the query-serving error code
vitess-bot[bot] Feb 3, 2025
22b2a93
Updated the query-serving error code
vitess-bot[bot] Feb 3, 2025
905d1a7
Updated the query-serving error code
vitess-bot[bot] Feb 3, 2025
449b53c
Updated the query-serving error code
vitess-bot[bot] Feb 3, 2025
e4c8873
Updated the query-serving error code
vitess-bot[bot] Feb 12, 2025
54d6277
Updated the query-serving error code
vitess-bot[bot] Feb 12, 2025
382628c
Updated the query-serving error code
vitess-bot[bot] Feb 12, 2025
ee10db7
Updated the query-serving error code
vitess-bot[bot] Feb 13, 2025
cc3dde6
Updated the query-serving error code
vitess-bot[bot] Feb 13, 2025
28bed38
Updated the query-serving error code
vitess-bot[bot] Feb 14, 2025
cff3a0e
Updated the query-serving error code
vitess-bot[bot] Feb 14, 2025
c3807b0
Updated the query-serving error code
vitess-bot[bot] Feb 17, 2025
6de0e8f
Updated the query-serving error code
vitess-bot[bot] Feb 19, 2025
c6151de
Updated the query-serving error code
vitess-bot[bot] Feb 20, 2025
a2e7c13
Updated the query-serving error code
vitess-bot[bot] Feb 20, 2025
fef0122
Updated the query-serving error code
vitess-bot[bot] Feb 20, 2025
540e958
Updated the query-serving error code
vitess-bot[bot] Feb 20, 2025
159c244
Updated the query-serving error code
vitess-bot[bot] Feb 20, 2025
db8b83d
Updated the query-serving error code
vitess-bot[bot] Feb 20, 2025
00f11f9
Updated the query-serving error code
vitess-bot[bot] Feb 24, 2025
9a6bf2f
Updated the query-serving error code
vitess-bot[bot] Feb 26, 2025
ed9d501
Updated the query-serving error code
vitess-bot[bot] Feb 26, 2025
7e55a79
Updated the query-serving error code
vitess-bot[bot] Feb 27, 2025
b9ca192
Updated the query-serving error code
vitess-bot[bot] Feb 27, 2025
2bc9dc8
Updated the query-serving error code
vitess-bot[bot] Feb 27, 2025
caf18e4
Updated the query-serving error code
vitess-bot[bot] Mar 1, 2025
526c2bd
Updated the query-serving error code
vitess-bot[bot] Mar 3, 2025
fb64951
Updated the query-serving error code
vitess-bot[bot] Mar 3, 2025
da4be76
Updated the query-serving error code
vitess-bot[bot] Mar 10, 2025
f4926cd
Updated the query-serving error code
vitess-bot[bot] Mar 18, 2025
60fbf59
update error codes for v22.0
frouioui Mar 19, 2025
ea3d87c
update error codes for v20.0
frouioui Mar 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/en/docs/20.0/reference/errors/query-serving.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,14 @@ These error messages are internal to Vitess. If you are getting other errors fro
| VT09022 | Cannot send query to multiple shards. | Destination does not have exactly one shard: %v | 0 | |
| VT09023 | Unable to determine the shard for the given row. | could not map %v to a keyspace id | 0 | |
| VT09024 | Unable to determine the shard for the given row. | could not map %v to a unique keyspace id: %v | 0 | |
| VT09026 | | Recursive Common Table Expression '%s' should contain a UNION | 3573 | HY000 |
| VT09027 | | Recursive Common Table Expression '%s' can contain neither aggregation nor window functions in recursive query block | 3575 | HY000 |
| VT09028 | | In recursive query block of Recursive Common Table Expression '%s', the recursive table must neither be in the right argument of a LEFT JOIN, nor be forced to be non-first with join order hints | 3576 | HY000 |
| VT09029 | | In recursive query block of Recursive Common Table Expression %s, the recursive table must be referenced only once, and not in any subquery | 3577 | HY000 |
| VT09030 | | Recursive query aborted after 1000 iterations. | 3636 | HY000 |
| VT09031 | | Primary demotion is stalled | 0 | |
| VT10001 | Foreign key constraints are not allowed, see https://vitess.io/blog/2021-06-15-online-ddl-why-no-fk/. | foreign key constraints are not allowed | 0 | |
| VT10002 | The distributed transaction cannot be committed. A rollback decision is taken. | atomic distributed transaction not allowed: %s | 0 | |
| VT12001 | This statement is unsupported by Vitess. Please rewrite your query to use supported syntax. | unsupported: %s | 0 | |
| VT12002 | Vitess does not support cross shard foreign keys. | unsupported: cross-shard foreign keys | 0 | |
| VT13001 | This error should not happen and is a bug. Please file an issue on GitHub: https://github.com/vitessio/vitess/issues/new/choose. | [BUG] %s | 0 | |
Expand All @@ -89,6 +96,8 @@ These error messages are internal to Vitess. If you are getting other errors fro
| VT14003 | No connection for the given tablet. | no connection for tablet %v | 0 | |
| VT14004 | The specified keyspace could not be found. | cannot find keyspace for: %s | 0 | |
| VT14005 | Failed to read sidecar database identifier. | cannot lookup sidecar database for keyspace: %s | 0 | |
| VT15002 | This error occurs after a VT15001 error was sent to the client. Future queries in the same session will continue to fail until the client resolves the issue by sending a ROLLBACK query. | previous transaction failed fatally. Issue a ROLLBACK query to resolve the failure. | 0 | |
| VT15001 | The opened transaction must be ROLLBACK by the application and re-tried. | transaction error, issue ROLLBACK and retry the transaction: %s | | |
<!-- end -->

## Old Errors
Expand Down