From dc7960953d6935c49273524673a8bb4d75c2fd43 Mon Sep 17 00:00:00 2001 From: jchrys Date: Thu, 7 Mar 2024 21:16:39 +0900 Subject: [PATCH] Revise `RowMetaData#getColumnMetadata(String)` Motivation: The current behavior does not align with the specification Modifications: implement the intended behavior as per the specification. Result: Correct behavior --- .../java/io/asyncer/r2dbc/mysql/MySqlRowDescriptorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2dbc-mysql/src/test/java/io/asyncer/r2dbc/mysql/MySqlRowDescriptorTest.java b/r2dbc-mysql/src/test/java/io/asyncer/r2dbc/mysql/MySqlRowDescriptorTest.java index d1514648e..aceff07ad 100644 --- a/r2dbc-mysql/src/test/java/io/asyncer/r2dbc/mysql/MySqlRowDescriptorTest.java +++ b/r2dbc-mysql/src/test/java/io/asyncer/r2dbc/mysql/MySqlRowDescriptorTest.java @@ -62,4 +62,4 @@ private static MySqlRowDescriptor create(final String... names) { } -} \ No newline at end of file +}