We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 2.3.2 Module: quill-orientdb Database: OrientDB
2.3.2
quill-orientdb
OrientDB
Built-in Encoder/Decoder for Byte (according to https://orientdb.com/docs/last/Types.html, Bytes are supported).
Byte
Missing Encoder/Decoder for Byte.
import io.getquill._ lazy val ctx = new OrientDBSyncContext(SnakeCase, "ctx") implicit val byteEncoder: Encoder[Byte] = ctx.encoder((index, value, row) => { row.insert(index, value) row }) implicit val byteDecoder: Decoder[Byte] = ctx.decoder((index, row) => { row.field[Byte](row.fieldNames()(index)) })
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:
2.3.2
Module:
quill-orientdb
Database:
OrientDB
Expected behavior
Built-in Encoder/Decoder for
Byte
(according to https://orientdb.com/docs/last/Types.html,Byte
s are supported).Actual behavior
Missing Encoder/Decoder for
Byte
.Workaround
@getquill/maintainers
The text was updated successfully, but these errors were encountered: