mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
db.mysql: use mysql datatype for alloc string_binds_map, not orm's (#24126)
This commit is contained in:
parent
567a7d9d67
commit
01a954310e
2 changed files with 14 additions and 22 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue