diff --git a/content/en/docs/19.0/reference/errors/query-serving.md b/content/en/docs/19.0/reference/errors/query-serving.md index e5dd43065..2ae5dbbea 100644 --- a/content/en/docs/19.0/reference/errors/query-serving.md +++ b/content/en/docs/19.0/reference/errors/query-serving.md @@ -18,7 +18,7 @@ These error messages are internal to Vitess. If you are getting other errors fro | VT03003 | The specified table in this DELETE statement is unknown. | unknown table '%s' in MULTI DELETE | 1109 | 42S02 | | VT03004 | You cannot delete something that is not a real MySQL table. | the target table %s of the DELETE is not updatable | 1288 | HY000 | | VT03005 | The planner does not allow grouping on certain field. For instance, aggregation function. | cannot group on '%s' | 1056 | 42000 | -| VT03006 | The number of columns you want to insert do not match the number of columns of your SELECT query. | column count does not match value count at row 1 | 1136 | 21S01 | +| VT03006 | The number of columns you want to insert do not match the number of columns of your SELECT query. | column count does not match value count with the row | 1136 | 21S01 | | VT03007 | You need to add a keyspace qualifier. | keyspace not specified | 0 | | | VT03008 | The given token is not usable in this situation. Please refer to the MySQL documentation to learn more about your token's syntax. | incorrect usage/placement of '%s' | 1234 | 42000 | | VT03009 | You cannot assign this type to the given variable. | unexpected value type for '%s': %v | 1231 | 42000 | @@ -40,6 +40,9 @@ These error messages are internal to Vitess. If you are getting other errors fro | VT03025 | The execute statement have wrong number of arguments | Incorrect arguments to %s | 1210 | HY000 | | VT03024 | The query cannot be executed as missing the bind variable. | '%s' bind variable does not exists | 0 | | | VT03027 | The column cannot have null value. | Column '%s' cannot be null | 1048 | 23000 | +| VT03028 | The column cannot have null value. | Column '%s' cannot be null on row %d, col %d | 1048 | 23000 | +| VT03029 | The number of columns you want to insert do not match the number of columns of your SELECT query. | column count does not match value count with the row for vindex '%s' | 1136 | 21S01 | +| VT03030 | The number of columns you want to insert do not match the number of columns of your SELECT query. | lookup column count does not match value count with the row (columns, count): (%v, %d) | 1136 | 21S01 | | VT05001 | The given database does not exist; Vitess cannot drop it. | cannot drop database '%s'; database does not exists | 1008 | HY000 | | VT05002 | The given database does not exist; Vitess cannot alter it. | cannot alter database '%s'; unknown database | 1049 | 42000 | | VT05003 | The given database does not exist in the VSchema. | unknown database '%s' in vschema | 1049 | 42000 |