Merge pull request #2423 from amaanq/nonzero-field-id

feat!: use `Option<NonZeroU16>` for TSFieldIds
This commit is contained in:
Amaan Qureshi 2023-07-27 13:04:34 -04:00 committed by GitHub
commit 36c6c8aadf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 8 deletions

View file

@ -665,7 +665,7 @@ fn test_parsing_with_a_timeout() {
assert!(start_time.elapsed().as_micros() < 2000);
#[cfg(target_arch = "sparc64")]
assert!(start_time.elapsed().as_micros() < 4000);
assert!(start_time.elapsed().as_micros() < 8000);
// Continue parsing, but pause after 1 ms of processing.
parser.set_timeout_micros(5000);