Add checks for BigInt/BigUint in getRandomValues (#33485)

Signed-off-by: Daniel Adams <msub2official@gmail.com>
This commit is contained in:
Daniel Adams 2024-09-18 04:07:05 +00:00 committed by GitHub
parent 7eda58ea6d
commit 632d832704
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 50 deletions

View file

@ -83,6 +83,8 @@ fn is_integer_buffer(array_type: Type) -> bool {
Type::Uint16 |
Type::Int16 |
Type::Uint32 |
Type::Int32
Type::Int32 |
Type::BigInt64 |
Type::BigUint64
)
}