We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f72df commit 436ddadCopy full SHA for 436ddad
r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/constant/MySqlType.java
@@ -23,6 +23,7 @@
23
import java.math.BigInteger;
24
import java.nio.ByteBuffer;
25
import java.time.LocalDate;
26
+import java.time.LocalDateTime;
27
import java.time.LocalTime;
28
import java.time.ZonedDateTime;
29
@@ -271,7 +272,7 @@ public int getBinarySize() {
271
272
/**
273
* A date time type. It does not contain timezone. It uses string format to transfer the value.
274
*/
- DATETIME(MySqlType.ID_DATETIME, ZonedDateTime.class),
275
+ DATETIME(MySqlType.ID_DATETIME, LocalDateTime.class),
276
277
278
* A year type. It contains neither leap year information nor timezone.
0 commit comments