|
3 | 3 | "message" : [ "Field name %s is ambiguous and has %s matching fields in the struct." ], |
4 | 4 | "sqlState" : "42000" |
5 | 5 | }, |
| 6 | + "CONCURRENT_QUERY_ERROR" : { |
| 7 | + "message" : [ "Another instance of this query was just started by a concurrent session." ] |
| 8 | + }, |
6 | 9 | "DIVIDE_BY_ZERO" : { |
7 | 10 | "message" : [ "divide by zero" ], |
8 | 11 | "sqlState" : "22012" |
|
11 | 14 | "message" : [ "Found duplicate keys '%s'" ], |
12 | 15 | "sqlState" : "23000" |
13 | 16 | }, |
| 17 | + "FAILED_RENAME_PATH" : { |
| 18 | + "message" : [ "Failed to rename %s to %s as destination already exists" ], |
| 19 | + "sqlState" : "22023" |
| 20 | + }, |
| 21 | + "FAILED_SET_ORIGINAL_PERMISSION_BACK" : { |
| 22 | + "message" : [ "Failed to set original permission %s back to the created path: %s. Exception: %s" ] |
| 23 | + }, |
14 | 24 | "GROUPING_COLUMN_MISMATCH" : { |
15 | 25 | "message" : [ "Column of grouping (%s) can't be found in grouping columns %s" ], |
16 | 26 | "sqlState" : "42000" |
|
29 | 39 | "message" : [ "Invalid pivot column '%s'. Pivot columns must be comparable." ], |
30 | 40 | "sqlState" : "42000" |
31 | 41 | }, |
| 42 | + "INCOMPATIBLE_DATASOURCE_REGISTER" : { |
| 43 | + "message" : [ "Detected an incompatible DataSourceRegister. Please remove the incompatible library from classpath or upgrade it. Error: %s" ] |
| 44 | + }, |
| 45 | + "INDEX_OUT_OF_BOUNDS" : { |
| 46 | + "message" : [ "Index %s must be between 0 and the length of the ArrayData." ], |
| 47 | + "sqlState" : "22023" |
| 48 | + }, |
32 | 49 | "INVALID_FIELD_NAME" : { |
33 | 50 | "message" : [ "Field name %s is invalid: %s is not a struct." ], |
34 | 51 | "sqlState" : "42000" |
35 | 52 | }, |
| 53 | + "INVALID_FRACTION_OF_SECOND" : { |
| 54 | + "message" : [ "The fraction of sec must be zero. Valid range is [0, 60]." ], |
| 55 | + "sqlState" : "22023" |
| 56 | + }, |
36 | 57 | "INVALID_JSON_SCHEMA_MAPTYPE" : { |
37 | 58 | "message" : [ "Input schema %s can only contain StringType as a key type for a MapType." ] |
38 | 59 | }, |
39 | 60 | "MISSING_COLUMN" : { |
40 | 61 | "message" : [ "cannot resolve '%s' given input columns: [%s]" ], |
41 | 62 | "sqlState" : "42000" |
42 | 63 | }, |
| 64 | + "MISSING_METHOD" : { |
| 65 | + "message" : [ "A method named \"%s\" is not declared in any enclosing class nor any supertype" ], |
| 66 | + "sqlState" : "42000" |
| 67 | + }, |
43 | 68 | "MISSING_STATIC_PARTITION_COLUMN" : { |
44 | 69 | "message" : [ "Unknown static partition column: %s" ], |
45 | 70 | "sqlState" : "42000" |
|
56 | 81 | "message" : [ "Invalid pivot value '%s': value data type %s does not match pivot column data type %s" ], |
57 | 82 | "sqlState" : "42000" |
58 | 83 | }, |
| 84 | + "RENAME_SRC_PATH_NOT_FOUND" : { |
| 85 | + "message" : [ "Failed to rename as %s was not found" ], |
| 86 | + "sqlState" : "22023" |
| 87 | + }, |
59 | 88 | "SECOND_FUNCTION_ARGUMENT_NOT_INTEGER" : { |
60 | 89 | "message" : [ "The second argument of '%s' function needs to be an integer." ], |
61 | 90 | "sqlState" : "22023" |
62 | 91 | }, |
63 | 92 | "UNABLE_TO_ACQUIRE_MEMORY" : { |
64 | 93 | "message" : [ "Unable to acquire %s bytes of memory, got %s" ] |
65 | 94 | }, |
| 95 | + "UNRECOGNIZED_SQL_TYPE" : { |
| 96 | + "message" : [ "Unrecognized SQL type %s" ], |
| 97 | + "sqlState" : "42000" |
| 98 | + }, |
| 99 | + "UNSUPPORTED_LITERAL_TYPE" : { |
| 100 | + "message" : [ "Unsupported literal type %s %s" ], |
| 101 | + "sqlState" : "0A000" |
| 102 | + }, |
| 103 | + "UNSUPPORTED_TRANSACTION_BY_JDBC_SERVER" : { |
| 104 | + "message" : [ "The target JDBC server does not support transaction and can only support ALTER TABLE with a single action." ], |
| 105 | + "sqlState" : "0A000" |
| 106 | + }, |
66 | 107 | "WRITING_JOB_ABORTED" : { |
67 | 108 | "message" : [ "Writing job aborted" ], |
68 | 109 | "sqlState" : "40000" |
|
0 commit comments