Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions maven-projects/info/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,18 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface ArrowTable extends CXXPointer {
* @param allocator Buffer allocator for allocating C data interface fields
* @param vsr Vector schema root to export
* @param provider Dictionary provider for dictionary encoded vectors (optional)
* @return StdSharedPtr<ArrowTable>
* @return ArrowTbale shared pointer
*/
static StdSharedPtr<ArrowTable> fromVectorSchemaRoot(
BufferAllocator allocator, VectorSchemaRoot vsr, DictionaryProvider provider) {
Expand Down Expand Up @@ -83,7 +83,7 @@ interface Static {
*
* @param arrayAddress Address of C ArrowArray
* @param schemaAddress Address of C ArrowSchema
* @return StdSharedPtr<ArrowTable> wrapped by ArrowResult
* @return ArrowTbale shared pointer Result
*/
@CXXValue
ArrowResult<StdSharedPtr<ArrowTable>> fromArrowArrayAndArrowSchema(
Expand Down
Loading