-
Notifications
You must be signed in to change notification settings - Fork 49
Add arrow adapter to stream record batches zero-copy into csp #519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
return None | ||
|
||
|
||
ArrowHistoricalAdapter = py_pull_adapter_def( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the docstring for this adapter automatically pull the docstring for the adapter impl? We should make sure it has good documentation
Signed-off-by: Arham Chopra <[email protected]>
5ac31a4
to
7ebce5c
Compare
…pter Signed-off-by: Arham Chopra <[email protected]>
…rquetReader Signed-off-by: Arham Chopra <[email protected]>
7ebce5c
to
01efd9f
Compare
Signed-off-by: Arham Chopra <[email protected]>
7082673
to
abb25ed
Compare
Signed-off-by: Arham Chopra <[email protected]>
…_to_record_batches Signed-off-by: Arham Chopra <[email protected]>
df34e91
to
92e5ff9
Compare
Signed-off-by: Arham Chopra <[email protected]>
@@ -192,9 +192,17 @@ void SingleTableParquetReader::setColumnAdaptersFromCurrentTable() | |||
columnAdapter = createColumnAdapter( *this, *field, getCurFileOrTableName(), &getStructColumnMeta() ); | |||
auto &fieldInfo = fieldsInfo[ index ]; | |||
|
|||
for( std::size_t i = 0; i < fieldInfo.m_width; ++i ) | |||
if( isArrowIPC() ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is way to check if we are using the InMemoryTableParquetReader
Partially resolves #297