orm: fix other int types (#11981)

pull/11983/head
Louis Schmieder 2021-09-26 10:17:56 +02:00 committed by GitHub
parent e09860731f
commit 6391f3d2da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 3 deletions

View File

@ -12,7 +12,7 @@ struct Module {
struct User {
id int [primary; sql: serial]
age int [unique: 'user']
age u32 [unique: 'user']
name string [sql: 'username'; unique]
is_customer bool [sql: 'abc'; unique: 'user']
skipped_string string [skip]

View File

@ -8,6 +8,7 @@ struct Module {
id int [primary; sql: serial]
name string
nr_downloads int
test_id u64
user User
}
@ -33,7 +34,7 @@ fn test_orm_sqlite() {
db := sqlite.connect(':memory:') or { panic(err) }
db.exec('drop table if exists User')
sql db {
create table User
create table Module
}
name := 'Peter'
@ -313,4 +314,20 @@ fn test_orm_sqlite() {
}
assert data.len == 1
mod := Module{}
sql db {
insert mod into Module
}
sql db {
update Module set test_id = 11 where id == 1
}
test_id_mod := sql db {
select from Module where id == 1
}
assert test_id_mod.test_id == 11
}

View File

@ -8088,7 +8088,8 @@ fn (mut c Checker) sql_stmt_line(mut node ast.SqlStmtLine) ast.Type {
}
fn (mut c Checker) fetch_and_verify_orm_fields(info ast.Struct, pos token.Position, table_name string) []ast.StructField {
fields := info.fields.filter((it.typ in [ast.string_type, ast.int_type, ast.bool_type]
fields := info.fields.filter(
(it.typ in [ast.string_type, ast.bool_type] || int(it.typ) in ast.number_type_idxs
|| c.table.type_symbols[int(it.typ)].kind == .struct_
|| (c.table.get_type_symbol(it.typ).kind == .array
&& c.table.get_type_symbol(c.table.get_type_symbol(it.typ).array_info().elem_type).kind == .struct_))