From 18b98d093c8504d7de7812dab954445afa204a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Z=2E?= <65818270+zhujoel@users.noreply.github.com> Date: Thu, 28 Nov 2024 15:34:14 +0100 Subject: [PATCH] Add enum value for error: 2312 ER_WARN_DATA_OUT_OF_RANGE_UNSPECIFIC: Out of range value (#5) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add WarningDataOutOfRangeUnspecific as to SingleStoreErrorCode Signed-off-by: Joël Zhu * Update error order in documentation Signed-off-by: Joël Zhu --------- Signed-off-by: Joël Zhu --- .../content/api/SingleStoreConnector/SingleStoreErrorCode.md | 1 + src/SingleStoreConnector/SingleStoreErrorCode.g.cs | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/docs/content/api/SingleStoreConnector/SingleStoreErrorCode.md b/docs/content/api/SingleStoreConnector/SingleStoreErrorCode.md index 5d2146080..0356b759d 100644 --- a/docs/content/api/SingleStoreConnector/SingleStoreErrorCode.md +++ b/docs/content/api/SingleStoreConnector/SingleStoreErrorCode.md @@ -669,6 +669,7 @@ public enum SingleStoreErrorCode | InnodbReadOnly | `1874` | ER_INNODB_READ_ONLY | | TableCorrupt | `1877` | ER_TABLE_CORRUPT | | TempFileWriteFailure | `1878` | ER_TEMP_FILE_WRITE_FAILURE | +| WarningDataOutOfRangeUnspecific | `2312` | ER_WARN_DATA_OUT_OF_RANGE_UNSPECIFIC | | ExplainNotSupported | `3012` | ER_EXPLAIN_NOT_SUPPORTED | | InvalidFieldSize | `3013` | ER_INVALID_FIELD_SIZE | | QueryTimeout | `3024` | ER_QUERY_TIMEOUT | diff --git a/src/SingleStoreConnector/SingleStoreErrorCode.g.cs b/src/SingleStoreConnector/SingleStoreErrorCode.g.cs index 794ac6b34..8ed10f75c 100644 --- a/src/SingleStoreConnector/SingleStoreErrorCode.g.cs +++ b/src/SingleStoreConnector/SingleStoreErrorCode.g.cs @@ -3285,6 +3285,11 @@ public enum SingleStoreErrorCode /// TempFileWriteFailure = 1878, + /// + /// ER_WARN_DATA_OUT_OF_RANGE_UNSPECIFIC + /// + WarningDataOutOfRangeUnspecific = 2312, + /// /// ER_EXPLAIN_NOT_SUPPORTED ///