File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
- name : Setup coursier cache
16
16
17
17
- name : Setup scala-cli
18
- uses : VirtusLab/scala-cli-setup@v1.4.0
18
+ uses : VirtusLab/scala-cli-setup@v1.5.1
19
19
- name : Run tests
20
20
run : scala-cli test . --jvm temurin:11
Original file line number Diff line number Diff line change 1
- //> using scala " 3.3.3 "
1
+ //> using scala " 3.3.4 "
2
2
//> using dep " org.apache.spark:spark-core_2.13:3.2.0"
3
3
//> using dep " org.apache.spark:spark-sql_2.13:3.2.0"
4
- //> using test .dep " org.scalatest::scalatest::3.2.16 "
4
+ //> using test .dep " org.scalatest::scalatest::3.2.19 "
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ object StructEncoder:
172
172
}
173
173
end fromMirrorImpl
174
174
175
- inline given optFromMirror [A ](using encoder : StructEncoder [A ]): (Encoder [Option [A ]] { type ColumnType = StructOptType [encoder.StructSchema ] }) =
175
+ given optFromMirror [A ](using encoder : StructEncoder [A ]): (Encoder [Option [A ]] { type ColumnType = StructOptType [encoder.StructSchema ] }) =
176
176
new Encoder [Option [A ]]:
177
177
override type ColumnType = StructOptType [encoder.StructSchema ]
178
178
override def encode (value : Option [A ]): Any = value.map(encoder.encode).orNull
You can’t perform that action at this time.
0 commit comments