Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sheinbergon committed Oct 4, 2022
1 parent e53dcca commit 1bba532
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<carrotsearch.version>0.7.0</carrotsearch.version>
<arrow-memory-netty.version>8.0.0</arrow-memory-netty.version>
</properties>
<version>0.3.6${artifact.version.suffix}</version>
<version>0.3.8${artifact.version.suffix}</version>
<name>dremio-udf-gis</name>
<description>GIS UDF extensions for Dremio</description>
<url>https://github.com/sheinbergon/dremio-udf-gis</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package org.sheinbergon.dremio.udf.gis
import com.dremio.exec.expr.AggrFunction
import io.kotest.core.spec.style.FunSpec
import org.apache.arrow.vector.holders.BitHolder
import org.apache.arrow.vector.holders.NullableBitHolder
import org.apache.arrow.vector.holders.NullableVarBinaryHolder
import org.sheinbergon.dremio.udf.gis.util.release
import org.sheinbergon.dremio.udf.gis.util.reset
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.sheinbergon.dremio.udf.gis

import org.apache.arrow.vector.holders.BitHolder
import org.apache.arrow.vector.holders.NullableBitHolder
import org.apache.arrow.vector.holders.NullableVarBinaryHolder
import org.sheinbergon.dremio.udf.gis.util.allocateBuffer

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package org.sheinbergon.dremio.udf.gis.spec
import com.dremio.exec.expr.SimpleFunction
import io.kotest.core.spec.style.FunSpec
import io.kotest.core.test.TestScope
import io.kotest.matchers.ints.shouldBeExactly
import io.kotest.matchers.shouldBe
import org.apache.arrow.vector.holders.BitHolder
import org.apache.arrow.vector.holders.NullableVarBinaryHolder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ internal fun NullableBitHolder.reset() {
value = 0
}


internal fun NullableBitHolder.valueIsTrue() = this.value shouldBeExactly 1
internal fun NullableBitHolder.valueIsFalse() = this.value shouldBeExactly 0
internal fun BitHolder.valueIsTrue() = this.value shouldBeExactly 1
Expand Down

0 comments on commit 1bba532

Please sign in to comment.