Skip to content

Commit

Permalink
fix: adding vector module
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Sep 10, 2024
1 parent fed5fcb commit 9709de0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions java/vector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,15 @@ under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration combine.children="append">
<compilerArgs>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<!-- generate sources from fmpp -->
<groupId>org.apache.drill.tools</groupId>
Expand Down
1 change: 1 addition & 0 deletions java/vector/src/main/codegen/templates/BaseWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public interface StructOrListWriter {
/**
* @deprecated use {@link #listOfStruct()} instead.
*/
@Deprecated
StructOrListWriter listoftstruct(String name);
StructOrListWriter listOfStruct(String name);
StructOrListWriter list(String name);
Expand Down

0 comments on commit 9709de0

Please sign in to comment.