orm: fix order by with custom column name (#22813)

This commit is contained in:
Felipe Pena 2024-11-09 02:24:59 -03:00 committed by GitHub
parent a1904154d3
commit fad49da199
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 47 additions and 1 deletions

View file

@ -165,6 +165,7 @@ const skip_with_fsanitize_memory = [
'vlib/orm/orm_references_test.v',
'vlib/orm/orm_option_array_test.v',
'vlib/orm/orm_option_time_test.v',
'vlib/orm/orm_order_by_custom_field_test.v',
'vlib/db/sqlite/sqlite_test.v',
'vlib/db/sqlite/sqlite_orm_test.v',
'vlib/db/sqlite/sqlite_comptime_field_test.v',
@ -261,6 +262,7 @@ const skip_on_ubuntu_musl = [
'vlib/orm/orm_references_test.v',
'vlib/orm/orm_option_array_test.v',
'vlib/orm/orm_option_time_test.v',
'vlib/orm/orm_order_by_custom_field_test.v',
'vlib/v/tests/orm_enum_test.v',
'vlib/v/tests/orm_sub_struct_test.v',
'vlib/v/tests/orm_sub_array_struct_test.v',