@@ -568,19 +568,19 @@ def _raise_not_supported(feature: str) -> None:
568
568
),
569
569
ERR_ARRAYS_OF_ARRAYS : "arrays of arrays are not supported" ,
570
570
ERR_ARROW_C_API_ERROR : (
571
- "Arrow C Data Interface operation failed with error code {code}"
571
+ "Apache Arrow C Data Interface operation failed with error code {code}"
572
572
),
573
573
ERR_ARROW_SPARSE_VECTOR_NOT_ALLOWED : (
574
574
"Apache Arrow format does not support sparse vectors with flexible "
575
575
"dimensions"
576
576
),
577
577
ERR_ARROW_UNSUPPORTED_CHILD_DATA_FORMAT : (
578
- ' conversion from list with child Arrow format "{schema_format}" to '
579
- " Oracle Database vector is not supported"
578
+ " conversion from Apache Arrow list with child format "
579
+ '"{schema_format}" to Oracle Database vector is not supported'
580
580
),
581
581
ERR_ARROW_UNSUPPORTED_DATA_FORMAT : (
582
- 'conversion from Arrow format "{schema_format}" to Oracle Database '
583
- "is not supported"
582
+ 'conversion from Apache Arrow format "{schema_format}" to Oracle '
583
+ "Database is not supported"
584
584
),
585
585
ERR_ARROW_UNSUPPORTED_DATA_TYPE : (
586
586
"conversion from Oracle Database type {db_type_name} to Apache "
@@ -596,20 +596,20 @@ def _raise_not_supported(feature: str) -> None:
596
596
),
597
597
ERR_CALL_TIMEOUT_EXCEEDED : "call timeout of {timeout} ms exceeded" ,
598
598
ERR_CANNOT_CONVERT_FROM_ARROW_TYPE : (
599
- 'Arrow type "{arrow_type}" cannot be converted to database type '
600
- '"{db_type}"'
599
+ 'Apache Arrow type "{arrow_type}" cannot be converted to database '
600
+ 'type "{db_type}"'
601
601
),
602
602
ERR_CANNOT_CONVERT_TO_ARROW_DOUBLE : (
603
- "{value} cannot be converted to an Arrow double"
603
+ "{value} cannot be converted to an Apache Arrow double"
604
604
),
605
605
ERR_CANNOT_CONVERT_TO_ARROW_FLOAT : (
606
- "{value} cannot be converted to an Arrow float"
606
+ "{value} cannot be converted to an Apache Arrow float"
607
607
),
608
608
ERR_CANNOT_CONVERT_TO_ARROW_INTEGER : (
609
- "{value} cannot be converted to an Arrow integer"
609
+ "{value} cannot be converted to an Apache Arrow integer"
610
610
),
611
611
ERR_CANNOT_CONVERT_TO_ARROW_TYPE : (
612
- 'database type "{db_type}" cannot be converted to Arrow type '
612
+ 'database type "{db_type}" cannot be converted to Apache Arrow type '
613
613
'"{arrow_type}"'
614
614
),
615
615
ERR_CANNOT_PARSE_CONNECT_STRING : 'cannot parse connect string "{data}"' ,
@@ -710,7 +710,8 @@ def _raise_not_supported(feature: str) -> None:
710
710
),
711
711
ERR_INVALID_ENUM_VALUE : "invalid value for enumeration {name}: {value}" ,
712
712
ERR_INVALID_INTEGER : (
713
- "integer {value} cannot be represented as Arrow type {arrow_type}"
713
+ "integer {value} cannot be represented as Apache Arrow type "
714
+ "{arrow_type}"
714
715
),
715
716
ERR_INVALID_LOB_AMOUNT : "LOB amount must be greater than zero" ,
716
717
ERR_INVALID_LOB_OFFSET : "LOB offset must be greater than zero" ,
@@ -937,7 +938,7 @@ def _raise_not_supported(feature: str) -> None:
937
938
ERR_UNKNOWN_TRANSACTION_SYNC_VERSION : (
938
939
"internal error: unknown transaction sync version {version}"
939
940
),
940
- ERR_UNSUPPORTED_ARROW_TYPE : 'unsupported Arrow type "{arrow_type}"' ,
941
+ ERR_UNSUPPORTED_ARROW_TYPE : 'unsupported Apache Arrow type "{arrow_type}"' ,
941
942
ERR_UNSUPPORTED_INBAND_NOTIFICATION : (
942
943
"unsupported in-band notification with error number {err_num}"
943
944
),
@@ -968,17 +969,17 @@ def _raise_not_supported(feature: str) -> None:
968
969
"expecting a list of two elements [type, numelems]"
969
970
),
970
971
ERR_WRONG_DIRECT_PATH_DATA_TYPE : (
971
- "expecting a list or an object implementing the Arrow PyCapsule "
972
- "interface __arrow_c_stream__()"
972
+ "expecting a list or an object implementing the Apache Arrow "
973
+ "PyCapsule interface __arrow_c_stream__()"
973
974
),
974
975
ERR_WRONG_EXECUTE_PARAMETERS_TYPE : (
975
976
"expecting a dictionary, list or tuple, or keyword args"
976
977
),
977
978
ERR_WRONG_EXECUTEMANY_PARAMETERS_TYPE : (
978
979
'"parameters" argument should be a list of sequences or '
979
980
"dictionaries, or an integer specifying the number of "
980
- "times to execute the statement, or an object implementing the Arrow "
981
- "PyCapsule interface __arrow_c_stream__()"
981
+ "times to execute the statement, or an object implementing the Apache "
982
+ "Arrow PyCapsule interface __arrow_c_stream__()"
982
983
),
983
984
ERR_WRONG_NUMBER_OF_POSITIONAL_BINDS : (
984
985
"{expected_num} positional bind values are required but "
0 commit comments