@@ -299,14 +299,13 @@ BEGIN_RCPP
299299END_RCPP
300300}
301301// ChunkedArray__chunks
302- List ChunkedArray__chunks (const std::shared_ptr<arrow::ChunkedArray>& chunked_array, int i );
303- RcppExport SEXP _arrow_ChunkedArray__chunks (SEXP chunked_arraySEXP, SEXP iSEXP ) {
302+ List ChunkedArray__chunks (const std::shared_ptr<arrow::ChunkedArray>& chunked_array);
303+ RcppExport SEXP _arrow_ChunkedArray__chunks (SEXP chunked_arraySEXP) {
304304BEGIN_RCPP
305305 Rcpp::RObject rcpp_result_gen;
306306 Rcpp::RNGScope rcpp_rngScope_gen;
307307 Rcpp::traits::input_parameter< const std::shared_ptr<arrow::ChunkedArray>& >::type chunked_array (chunked_arraySEXP);
308- Rcpp::traits::input_parameter< int >::type i (iSEXP);
309- rcpp_result_gen = Rcpp::wrap (ChunkedArray__chunks (chunked_array, i));
308+ rcpp_result_gen = Rcpp::wrap (ChunkedArray__chunks (chunked_array));
310309 return rcpp_result_gen;
311310END_RCPP
312311}
@@ -321,14 +320,14 @@ BEGIN_RCPP
321320 return rcpp_result_gen;
322321END_RCPP
323322}
324- // ChunkedArray_as_vector
325- SEXP ChunkedArray_as_vector (const std::shared_ptr<arrow::ChunkedArray>& chunked_array);
326- RcppExport SEXP _arrow_ChunkedArray_as_vector (SEXP chunked_arraySEXP) {
323+ // ChunkedArray__as_vector
324+ SEXP ChunkedArray__as_vector (const std::shared_ptr<arrow::ChunkedArray>& chunked_array);
325+ RcppExport SEXP _arrow_ChunkedArray__as_vector (SEXP chunked_arraySEXP) {
327326BEGIN_RCPP
328327 Rcpp::RObject rcpp_result_gen;
329328 Rcpp::RNGScope rcpp_rngScope_gen;
330329 Rcpp::traits::input_parameter< const std::shared_ptr<arrow::ChunkedArray>& >::type chunked_array (chunked_arraySEXP);
331- rcpp_result_gen = Rcpp::wrap (ChunkedArray_as_vector (chunked_array));
330+ rcpp_result_gen = Rcpp::wrap (ChunkedArray__as_vector (chunked_array));
332331 return rcpp_result_gen;
333332END_RCPP
334333}
@@ -489,6 +488,17 @@ BEGIN_RCPP
489488 return rcpp_result_gen;
490489END_RCPP
491490}
491+ // Column__data
492+ std::shared_ptr<arrow::ChunkedArray> Column__data (const std::shared_ptr<arrow::Column>& column);
493+ RcppExport SEXP _arrow_Column__data (SEXP columnSEXP) {
494+ BEGIN_RCPP
495+ Rcpp::RObject rcpp_result_gen;
496+ Rcpp::RNGScope rcpp_rngScope_gen;
497+ Rcpp::traits::input_parameter< const std::shared_ptr<arrow::Column>& >::type column (columnSEXP);
498+ rcpp_result_gen = Rcpp::wrap (Column__data (column));
499+ return rcpp_result_gen;
500+ END_RCPP
501+ }
492502// Field_initialize
493503std::shared_ptr<arrow::Field> Field_initialize (const std::string& name, const std::shared_ptr<arrow::DataType>& type, bool nullable);
494504RcppExport SEXP _arrow_Field_initialize (SEXP nameSEXP, SEXP typeSEXP, SEXP nullableSEXP) {
@@ -1077,9 +1087,9 @@ static const R_CallMethodDef CallEntries[] = {
10771087 {" _arrow_ChunkedArray__null_count" , (DL_FUNC) &_arrow_ChunkedArray__null_count, 1 },
10781088 {" _arrow_ChunkedArray__num_chunks" , (DL_FUNC) &_arrow_ChunkedArray__num_chunks, 1 },
10791089 {" _arrow_ChunkedArray__chunk" , (DL_FUNC) &_arrow_ChunkedArray__chunk, 2 },
1080- {" _arrow_ChunkedArray__chunks" , (DL_FUNC) &_arrow_ChunkedArray__chunks, 2 },
1090+ {" _arrow_ChunkedArray__chunks" , (DL_FUNC) &_arrow_ChunkedArray__chunks, 1 },
10811091 {" _arrow_ChunkedArray__type" , (DL_FUNC) &_arrow_ChunkedArray__type, 1 },
1082- {" _arrow_ChunkedArray_as_vector " , (DL_FUNC) &_arrow_ChunkedArray_as_vector , 1 },
1092+ {" _arrow_ChunkedArray__as_vector " , (DL_FUNC) &_arrow_ChunkedArray__as_vector , 1 },
10831093 {" _arrow_RecordBatch_to_dataframe" , (DL_FUNC) &_arrow_RecordBatch_to_dataframe, 1 },
10841094 {" _arrow_dataframe_to_Table" , (DL_FUNC) &_arrow_dataframe_to_Table, 1 },
10851095 {" _arrow_Table_num_columns" , (DL_FUNC) &_arrow_Table_num_columns, 1 },
@@ -1094,6 +1104,7 @@ static const R_CallMethodDef CallEntries[] = {
10941104 {" _arrow_Column__length" , (DL_FUNC) &_arrow_Column__length, 1 },
10951105 {" _arrow_Column__null_count" , (DL_FUNC) &_arrow_Column__null_count, 1 },
10961106 {" _arrow_Column__type" , (DL_FUNC) &_arrow_Column__type, 1 },
1107+ {" _arrow_Column__data" , (DL_FUNC) &_arrow_Column__data, 1 },
10971108 {" _arrow_Field_initialize" , (DL_FUNC) &_arrow_Field_initialize, 3 },
10981109 {" _arrow_Field_ToString" , (DL_FUNC) &_arrow_Field_ToString, 1 },
10991110 {" _arrow_Field_name" , (DL_FUNC) &_arrow_Field_name, 1 },
0 commit comments