db.mysql: use mysql datatype for alloc string_binds_map, not orm's (#24126)

This commit is contained in:
kbkpbot 2025-04-03 22:01:29 +08:00 committed by GitHub
parent 567a7d9d67
commit 01a954310e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 22 deletions

View file

@ -203,10 +203,9 @@ fn test_mysql_orm() {
}!
assert results[0].created_at == model.created_at
// TODO: investigate why these fail with V 0.4.0 11a8a46 , and fix them:
// assert results[0].username == model.username
// assert results[0].updated_at == model.updated_at
// assert results[0].deleted_at == model.deleted_at
assert results[0].username == model.username
assert results[0].updated_at == model.updated_at
assert results[0].deleted_at == model.deleted_at
/** test default attribute
*/