MCPcopy Create free account
hub / github.com/apache/arrow / DecimalFromPythonDecimal

Function DecimalFromPythonDecimal

python/pyarrow/src/arrow/python/decimal.cc:168–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166} // namespace
167
168Status DecimalFromPythonDecimal(PyObject* python_decimal, const DecimalType& arrow_type,
169 Decimal32* out) {
170 return InternalDecimalFromPythonDecimal(python_decimal, arrow_type, out);
171}
172
173Status DecimalFromPyObject(PyObject* obj, const DecimalType& arrow_type, Decimal32* out) {
174 return InternalDecimalFromPyObject(obj, arrow_type, out);

Calls 1