Closed christianroman closed 3 years ago
When will this PR merged?
I had made this enhancement exactly like yours, then found this fork. But, I do have a question about line 136 in Coding.swift:
self.encoder.setters.append(Expression(key.stringValue) <- date.datatypeValue)
why did you do date.datatypeValue
instead of as below?
self.encoder.setters.append(Expression(key.stringValue) <- date)
All tests passed.