duckdb 1.4.1.dev125__cp311-cp311-macosx_11_0_arm64.whl → 1.4.2.dev1__cp311-cp311-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of duckdb might be problematic. Click here for more details.

@@ -1,31 +0,0 @@
1
- from typing import Dict
2
-
3
- SPECIAL: FunctionNullHandling
4
- DEFAULT: FunctionNullHandling
5
-
6
- NATIVE: PythonUDFType
7
- ARROW: PythonUDFType
8
-
9
- class FunctionNullHandling:
10
- DEFAULT: FunctionNullHandling
11
- SPECIAL: FunctionNullHandling
12
- def __int__(self) -> int: ...
13
- def __index__(self) -> int: ...
14
- @property
15
- def __members__(self) -> Dict[str, FunctionNullHandling]: ...
16
- @property
17
- def name(self) -> str: ...
18
- @property
19
- def value(self) -> int: ...
20
-
21
- class PythonUDFType:
22
- NATIVE: PythonUDFType
23
- ARROW: PythonUDFType
24
- def __int__(self) -> int: ...
25
- def __index__(self) -> int: ...
26
- @property
27
- def __members__(self) -> Dict[str, PythonUDFType]: ...
28
- @property
29
- def name(self) -> str: ...
30
- @property
31
- def value(self) -> int: ...
@@ -1,38 +0,0 @@
1
- from duckdb import DuckDBPyConnection
2
-
3
- SQLNULL: DuckDBPyType
4
- BOOLEAN: DuckDBPyType
5
- TINYINT: DuckDBPyType
6
- UTINYINT: DuckDBPyType
7
- SMALLINT: DuckDBPyType
8
- USMALLINT: DuckDBPyType
9
- INTEGER: DuckDBPyType
10
- UINTEGER: DuckDBPyType
11
- BIGINT: DuckDBPyType
12
- UBIGINT: DuckDBPyType
13
- HUGEINT: DuckDBPyType
14
- UHUGEINT: DuckDBPyType
15
- UUID: DuckDBPyType
16
- FLOAT: DuckDBPyType
17
- DOUBLE: DuckDBPyType
18
- DATE: DuckDBPyType
19
- TIMESTAMP: DuckDBPyType
20
- TIMESTAMP_MS: DuckDBPyType
21
- TIMESTAMP_NS: DuckDBPyType
22
- TIMESTAMP_S: DuckDBPyType
23
- TIME: DuckDBPyType
24
- TIME_TZ: DuckDBPyType
25
- TIMESTAMP_TZ: DuckDBPyType
26
- VARCHAR: DuckDBPyType
27
- BLOB: DuckDBPyType
28
- BIT: DuckDBPyType
29
- INTERVAL: DuckDBPyType
30
-
31
- class DuckDBPyType:
32
- def __init__(self, type_str: str, connection: DuckDBPyConnection = ...) -> None: ...
33
- def __repr__(self) -> str: ...
34
- def __eq__(self, other) -> bool: ...
35
- def __getattr__(self, name: str):
36
- DuckDBPyType
37
- def __getitem__(self, name: str):
38
- DuckDBPyType
@@ -1,114 +0,0 @@
1
- from duckdb.typing import DuckDBPyType
2
- from typing import Any
3
-
4
- class NullValue(Value):
5
- def __init__(self) -> None: ...
6
- def __repr__(self) -> str: ...
7
-
8
- class BooleanValue(Value):
9
- def __init__(self, object: Any) -> None: ...
10
- def __repr__(self) -> str: ...
11
-
12
- class UnsignedBinaryValue(Value):
13
- def __init__(self, object: Any) -> None: ...
14
- def __repr__(self) -> str: ...
15
-
16
- class UnsignedShortValue(Value):
17
- def __init__(self, object: Any) -> None: ...
18
- def __repr__(self) -> str: ...
19
-
20
- class UnsignedIntegerValue(Value):
21
- def __init__(self, object: Any) -> None: ...
22
- def __repr__(self) -> str: ...
23
-
24
- class UnsignedLongValue(Value):
25
- def __init__(self, object: Any) -> None: ...
26
- def __repr__(self) -> str: ...
27
-
28
- class BinaryValue(Value):
29
- def __init__(self, object: Any) -> None: ...
30
- def __repr__(self) -> str: ...
31
-
32
- class ShortValue(Value):
33
- def __init__(self, object: Any) -> None: ...
34
- def __repr__(self) -> str: ...
35
-
36
- class IntegerValue(Value):
37
- def __init__(self, object: Any) -> None: ...
38
- def __repr__(self) -> str: ...
39
-
40
- class LongValue(Value):
41
- def __init__(self, object: Any) -> None: ...
42
- def __repr__(self) -> str: ...
43
-
44
- class HugeIntegerValue(Value):
45
- def __init__(self, object: Any) -> None: ...
46
- def __repr__(self) -> str: ...
47
-
48
- class FloatValue(Value):
49
- def __init__(self, object: Any) -> None: ...
50
- def __repr__(self) -> str: ...
51
-
52
- class DoubleValue(Value):
53
- def __init__(self, object: Any) -> None: ...
54
- def __repr__(self) -> str: ...
55
-
56
- class DecimalValue(Value):
57
- def __init__(self, object: Any, width: int, scale: int) -> None: ...
58
- def __repr__(self) -> str: ...
59
-
60
- class StringValue(Value):
61
- def __init__(self, object: Any) -> None: ...
62
- def __repr__(self) -> str: ...
63
-
64
- class UUIDValue(Value):
65
- def __init__(self, object: Any) -> None: ...
66
- def __repr__(self) -> str: ...
67
-
68
- class BitValue(Value):
69
- def __init__(self, object: Any) -> None: ...
70
- def __repr__(self) -> str: ...
71
-
72
- class BlobValue(Value):
73
- def __init__(self, object: Any) -> None: ...
74
- def __repr__(self) -> str: ...
75
-
76
- class DateValue(Value):
77
- def __init__(self, object: Any) -> None: ...
78
- def __repr__(self) -> str: ...
79
-
80
- class IntervalValue(Value):
81
- def __init__(self, object: Any) -> None: ...
82
- def __repr__(self) -> str: ...
83
-
84
- class TimestampValue(Value):
85
- def __init__(self, object: Any) -> None: ...
86
- def __repr__(self) -> str: ...
87
-
88
- class TimestampSecondValue(Value):
89
- def __init__(self, object: Any) -> None: ...
90
- def __repr__(self) -> str: ...
91
-
92
- class TimestampMilisecondValue(Value):
93
- def __init__(self, object: Any) -> None: ...
94
- def __repr__(self) -> str: ...
95
-
96
- class TimestampNanosecondValue(Value):
97
- def __init__(self, object: Any) -> None: ...
98
- def __repr__(self) -> str: ...
99
-
100
- class TimestampTimeZoneValue(Value):
101
- def __init__(self, object: Any) -> None: ...
102
- def __repr__(self) -> str: ...
103
-
104
- class TimeValue(Value):
105
- def __init__(self, object: Any) -> None: ...
106
- def __repr__(self) -> str: ...
107
-
108
- class TimeTimeZoneValue(Value):
109
- def __init__(self, object: Any) -> None: ...
110
- def __repr__(self) -> str: ...
111
-
112
- class Value:
113
- def __init__(self, object: Any, type: DuckDBPyType) -> None: ...
114
- def __repr__(self) -> str: ...
File without changes