Browse Source
Most supported databases don't need that conversion. Db2 does need it and gets it through JdbcDb2Dialect. As part of the effort it became obvious that the filtering for conversions between Date and JSR310 data types was broken. It is fixed now, which required a dedicated reading conversion from LocalDateTime to Date for JdbcMySqlDialect. Closes #974 Original pull request: #985.pull/989/head
22 changed files with 217 additions and 67 deletions
@ -0,0 +1,46 @@
@@ -0,0 +1,46 @@
|
||||
/* |
||||
* Copyright 2021 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.jdbc.core.dialect; |
||||
|
||||
import static org.assertj.core.api.SoftAssertions.*; |
||||
|
||||
import java.sql.Timestamp; |
||||
import java.time.LocalDateTime; |
||||
import java.time.OffsetDateTime; |
||||
import java.util.List; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
import org.springframework.data.jdbc.core.convert.JdbcCustomConversions; |
||||
|
||||
/** |
||||
* Tests for {@link JdbcMySqlDialect}. |
||||
* |
||||
* @author Jens Schauder |
||||
*/ |
||||
class JdbcDb2DialectUnitTests { |
||||
|
||||
@Test // #974
|
||||
void testCustomConversions() { |
||||
|
||||
JdbcCustomConversions customConversions = new JdbcCustomConversions( |
||||
(List<?>) JdbcDb2Dialect.INSTANCE.getConverters()); |
||||
|
||||
assertSoftly(softly -> { |
||||
softly.assertThat(customConversions.getCustomWriteTarget(LocalDateTime.class)).contains(Timestamp.class); |
||||
softly.assertThat(customConversions.getCustomWriteTarget(OffsetDateTime.class)).contains(Timestamp.class); |
||||
}); |
||||
} |
||||
} |
||||
@ -0,0 +1,47 @@
@@ -0,0 +1,47 @@
|
||||
/* |
||||
* Copyright 2021 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.jdbc.core.dialect; |
||||
|
||||
import static org.assertj.core.api.SoftAssertions.*; |
||||
|
||||
import java.time.LocalDateTime; |
||||
import java.time.OffsetDateTime; |
||||
import java.util.List; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
import org.springframework.data.jdbc.core.convert.JdbcCustomConversions; |
||||
import org.springframework.data.jdbc.core.convert.JdbcValue; |
||||
|
||||
/** |
||||
* Tests for {@link JdbcMySqlDialect}. |
||||
* |
||||
* @author Jens Schauder |
||||
*/ |
||||
class JdbcMySqlDialectUnitTests { |
||||
|
||||
@Test // #974
|
||||
void testCustomConversions() { |
||||
|
||||
JdbcCustomConversions customConversions = new JdbcCustomConversions( |
||||
(List<?>) new JdbcMySqlDialect().getConverters()); |
||||
|
||||
assertSoftly(softly -> { |
||||
|
||||
softly.assertThat(customConversions.getCustomWriteTarget(LocalDateTime.class)).isEmpty(); |
||||
softly.assertThat(customConversions.getCustomWriteTarget(OffsetDateTime.class)).contains(JdbcValue.class); |
||||
}); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue