-
-
Notifications
You must be signed in to change notification settings - Fork 548
New issue
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
Pasting into Datagrip TEXT field puts null #5735
Comments
I'm able to repro the I did a quick sanity test and hardcoded Dolt to send back the same value as MySQL, and with that change, I'm no longer able to trigger the I don't yet understand exactly how MySQL is computing this value, so I still need to dig in a little bit more, but looks like we're close to getting this one fixed. I'll audit the other TEXT/BLOB types as well and come up with a way to test this better, too. |
After looking at this a little more closely... what seems to be different is how Dolt and MySQL are calculating the maximum character bytes for the character set. Dolt is looking at the charset on the table and using In DataGrip's connection properties, character_set_client,utf8mb4
character_set_connection,utf8mb4
character_set_database,utf8mb4
character_set_filesystem,binary
character_set_results,utf8mb3
character_set_server,utf8mb4
character_set_system,utf8mb3 In the DataGrip console for the local Dolt connection, these are the charset settings I see: character_set_client,utf8mb4
character_set_connection,utf8mb4
character_set_database,utf8mb4
character_set_filesystem,binary
character_set_results,utf8
character_set_server,utf8mb4
character_set_system,utf8mb4 There are also some notes at the bottom of the MySQL Connector/J documentation that explain some tricky points around Connector/J's handling of utf8 charsets. I'll keep digging into this one some more, but I suspect we need to pull in @Hydrocharged for additional context around charset support to make sure we fix this correctly. |
Quick update... we understand what's going on and the results Dolt needs to return; I'm just figuring out the cleanest way to change the code to make that happen. I chatted with Daylon yesterday afternoon about some of the charset details and have some ideas to try out today. My first test is looking successful so far (pasting works for mediumtext cols in DataGrip 🎉), but I still need to clean up a few things, test some more, and make sure this won't affect anything else. Initial test results this morning are looking promising though! |
Fix is merged into |
Fix was just released in Dolt 0.75.12. Thank you for reporting this one so we could fix it! |
When connecting to a Dolt server using Datagrip (or any JetBrains product that has the same database functionality), attempting to paste into a
SMALLTEXT/TEXT/MEDIUMTEXT
field causes anull
to be written instead. This does not occur with a standard MySQL instance.We hypothesize that vitess is returning an incorrect packet containing the field information, as there seem to be discontinuities between what the Java MySQL connector expects, and what vitess sends.
https://github.com/mysql/mysql-connector-j/blob/release/8.0/src/main/protocol-impl/java/com/mysql/cj/protocol/a/ColumnDefinitionReader.java#L118
https://github.com/dolthub/vitess/blob/64f98b0cb75a3306caf49558186aa071cae13ce0/go/vt/proto/query/query.pb.go#L1241
This may or may not be the issue, and it’s also possible that vitess implements an older revision (such as 5.7).
Datagrip also has an error on their side regarding the null pasting, but we’re still exhibiting an issue where MySQL does not, so an older version of Datagrip may need to be used if the most recent version does not exhibit the bug.
https://youtrack.jetbrains.com/issue/DBE-17300/Pasting-string-into-LONGTEXT-field-MySQL-always-gets-null-value
The text was updated successfully, but these errors were encountered: