Skip to content

Commit

Permalink
update error messages #15
Browse files Browse the repository at this point in the history
  • Loading branch information
nakagami committed Jul 11, 2024
1 parent e8d3bc8 commit 24b6351
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/efirebirdsql_errmsgs.erl
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ get_error_msg(335544508) -> "refresh range number ~s not found~n";
get_error_msg(335544509) -> "CHARACTER SET ~s is not defined~n";
get_error_msg(335544510) -> "lock time-out on wait transaction~n";
get_error_msg(335544511) -> "procedure ~s is not defined~n";
get_error_msg(335544512) -> "Input parameter mismatch for procedure ~s~n";
get_error_msg(335544512) -> "Parameter mismatch for procedure ~s~n";
get_error_msg(335544513) -> "Database ~s: WAL subsystem bug for pid ~s\n~s~n";
get_error_msg(335544514) -> "Could not expand the WAL segment for database ~s~n";
get_error_msg(335544515) -> "status code ~s unknown~n";
Expand Down Expand Up @@ -792,7 +792,7 @@ get_error_msg(335545097) -> "~s failed when working with CREATE DATABASE grants~
get_error_msg(335545098) -> "CREATE DATABASE grants check is not possible when database ~s is not present~n";
get_error_msg(335545099) -> "CREATE DATABASE grants check is not possible when table RDB$DB_CREATORS is not present in database ~s~n";
get_error_msg(335545100) -> "Interface ~s version too old: expected ~s, found ~s~n";
get_error_msg(335545101) -> "Input parameter mismatch for function ~s~n";
get_error_msg(335545101) -> "Parameter mismatch for function ~s~n";
get_error_msg(335545102) -> "Error during savepoint backout - transaction invalidated~n";
get_error_msg(335545103) -> "Domain used in the PRIMARY KEY constraint of table ~s must be NOT NULL~n";
get_error_msg(335545104) -> "CHARACTER SET ~s cannot be used as a attachment character set~n";
Expand Down Expand Up @@ -980,6 +980,25 @@ get_error_msg(335545285) -> "ODS upgrade failed while adding new system %s~n";
get_error_msg(335545286) -> "Wrong parallel workers value ~s, valid range are from 1 to ~s~n";
get_error_msg(335545287) -> "Definition of index expression is not found for index ~s~n";
get_error_msg(335545288) -> "Definition of index condition is not found for index ~s~n";
get_error_msg(335545289) -> "Variable ~s is not initialized~n";
get_error_msg(335545290) -> "Parameter ~s does not exist~n";
get_error_msg(335545291) -> "Parameter ~s has no default value and was not specified or was specified with DEFAULT~n";
get_error_msg(335545292) -> "Parameter ~s has multiple assignments~n";
get_error_msg(335545293) -> "Cannot recognize \"~s\" part of date format~n";
get_error_msg(335545294) -> "Cannot find closing \" for raw text in date format~n";
get_error_msg(335545295) -> "It is not possible to use this data type for date formatting~n";
get_error_msg(335545296) -> "Cannot use \"~s\" format with current date type~n";
get_error_msg(335545297) -> "Value for ~s pattern is out of range [~s, ~s]~n";
get_error_msg(335545298) -> "~s is not MONTH~n";
get_error_msg(335545299) -> "~s is incorrect period for 12H, it should be A.M. or P.M.~n";
get_error_msg(335545300) -> "All data has been read, but format pattern wants more. Unfilled patterns: \"~s\"~n";
get_error_msg(335545301) -> "There is a trailing part of input string that does not fit into FORMAT: \"~s\"~n";
get_error_msg(335545302) -> "~s can't be used without ~s~n";
get_error_msg(335545303) -> "~s can't be used without ~s and vice versa~n";
get_error_msg(335545304) -> "~s incompatible with ~s~n";
get_error_msg(335545305) -> "Can use only one of these patterns ~s~n";
get_error_msg(335545306) -> "Cannot use the same pattern twice: ~s~n";
get_error_msg(335545307) -> "Invalid GEN_UUID version (~s). Must be 4 or 7~n";
get_error_msg(335740929) -> "data base file name (~s) already given~n";
get_error_msg(335740930) -> "invalid switch ~s~n";
get_error_msg(335740932) -> "incompatible switch combination~n";
Expand Down

0 comments on commit 24b6351

Please sign in to comment.