Skip to content

Commit

Permalink
rm
Browse files Browse the repository at this point in the history
  • Loading branch information
kellen committed Aug 30, 2024
1 parent fd3896e commit aa9f05b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions beam/src/main/scala/magnolify/beam/RowType.scala
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,6 @@ object BeamSchemaField {
implicit val bsfDouble: BeamSchemaField[Double] = id[Double](_ => FieldType.DOUBLE)
// STRING A string
implicit val bsfString: BeamSchemaField[String] = id[String](_ => FieldType.STRING)
implicit val bsfCharSeq: BeamSchemaField[CharSequence] =
from[String](_.asInstanceOf[CharSequence])(_.toString)
// BOOLEAN A boolean value
implicit val bsfBoolean: BeamSchemaField[Boolean] = id[Boolean](_ => FieldType.BOOLEAN)
// BYTES A raw byte array
Expand Down
2 changes: 1 addition & 1 deletion beam/src/test/scala/magnolify/beam/RowTypeSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class RowTypeSuite extends MagnolifySuite {
}

case class Empty()
case class Others(bs: ByteString, cs: CharSequence, bb: ByteBuffer, c: Char)
case class Others(bs: ByteString, bb: ByteBuffer, c: Char)
case class Decimal(bd: BigDecimal, bdo: Option[BigDecimal])
case class Logical(
u: UUID,
Expand Down

0 comments on commit aa9f05b

Please sign in to comment.