summaryrefslogtreecommitdiff
path: root/sql/share/errmsg-utf8.txt
diff options
context:
space:
mode:
Diffstat (limited to 'sql/share/errmsg-utf8.txt')
-rw-r--r--sql/share/errmsg-utf8.txt47
1 files changed, 47 insertions, 0 deletions
diff --git a/sql/share/errmsg-utf8.txt b/sql/share/errmsg-utf8.txt
index 562d0acdd19..380d992a89b 100644
--- a/sql/share/errmsg-utf8.txt
+++ b/sql/share/errmsg-utf8.txt
@@ -7484,3 +7484,50 @@ ER_UNKNOWN_SEQUENCES 42S02
eng "Unknown SEQUENCE: '%-.300s'"
ER_UNKNOWN_VIEW 42S02
eng "Unknown VIEW: '%-.300s'"
+
+# MariaDB error numbers related to System Versioning
+
+ER_SYS_START_NOT_SPECIFIED
+ eng "'Generated as row start' not specified"
+
+ER_SYS_END_NOT_SPECIFIED
+ eng "'Generated as row end' not specified"
+
+ER_SYS_START_MORE_THAN_ONCE
+ eng "'Generated as row start' specified more than once"
+
+ER_SYS_END_MORE_THAN_ONCE
+ eng "Generated as row end specified more than once"
+
+ER_MISSING_PERIOD_FOR_SYSTEM_TIME
+ eng "'Period for system time' is missing"
+
+ER_TABLE_DOESNT_SUPPORT_SYSTEM_VERSIONING
+ eng "Table '%s' doesn't support system versioning"
+
+ER_MISSING_WITH_SYSTEM_VERSIONING
+ eng "'With system versioning' is missing"
+
+ER_PERIOD_FOR_SYSTEM_TIME_CONTAINS_WRONG_START_COLUMN
+ eng "First column in 'period for system time' must be equal to 'generated as row start' column"
+
+ER_PERIOD_FOR_SYSTEM_TIME_CONTAINS_WRONG_END_COLUMN
+ eng "Second column in 'period for system time' must be equal to 'generated as row end' column"
+
+ER_SYS_START_AND_SYS_END_SAME
+ eng "'Period for system_time' must contain two different columns"
+
+ER_GENERATED_FIELD_CANNOT_BE_SET_BY_USER
+ eng "Generated field for System Versioning cannot be set by user"
+
+ER_FOREIGN_KEY_ON_SYSTEM_VERSIONED
+ eng "Foreign key clause is not yet supported in conjunction with system versioning"
+
+ER_UPDATE_INFO_WITH_SYSTEM_VERSIONING
+ eng "Rows matched: %ld Changed: %ld Inserted: %ld Warnings: %ld"
+
+ER_SYS_START_FIELD_MUST_BE_TIMESTAMP
+ eng "System start field must be of type TIMESTAMP"
+
+ER_SYS_END_FIELD_MUST_BE_TIMESTAMP
+ eng "System end field must be of type TIMESTAMP"