()
| 2522 | |
| 2523 | #[mz_ore::test] |
| 2524 | fn test_array_schema() { |
| 2525 | check_schema( |
| 2526 | r#"{"type": "array", "items": "string"}"#, |
| 2527 | SchemaPiece::Array(Box::new(SchemaPieceOrNamed::Piece(SchemaPiece::String))), |
| 2528 | ); |
| 2529 | } |
| 2530 | |
| 2531 | #[mz_ore::test] |
| 2532 | fn test_map_schema() { |
nothing calls this directly
no test coverage detected