Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
orm_multidim_array.out
7
lines
·
7
sloc
·
282 bytes
·
757929392e0e7a75fc1272116460981e589737d5
Raw
1
vlib/v/checker/tests/orm_multidim_array.vv:12:2: error: ORM: multi-dimension array fields are not supported
2
10 | id int @[primary; sql: serial]
3
11 | users []User @[fkey: id]
4
12 | bad [][]User @[fkey: id]
5
| ~~~~~~~~~~~~~~
6
13 | }
7
14 |
8