feat: add fixed size list support (#1231)

This commit is contained in:
universalmind303 2024-04-23 16:53:03 -05:00 committed by GitHub
parent 39980e8976
commit ce85084deb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 36 additions and 10 deletions

View file

@ -1917,11 +1917,13 @@ fn parse_array_index_expr() {
})],
named: true,
})),
data_type: DataType::Array(ArrayElemTypeDef::SquareBracket(Box::new(
DataType::Array(ArrayElemTypeDef::SquareBracket(Box::new(DataType::Int(
data_type: DataType::Array(ArrayElemTypeDef::SquareBracket(
Box::new(DataType::Array(ArrayElemTypeDef::SquareBracket(
Box::new(DataType::Int(None)),
None
))))
))),
))),
None
)),
format: None,
}))),
indexes: vec![num[1].clone(), num[2].clone()],