File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ sql_type = "BLOB"
203
203
204
204
[[output_generated_tables_do_not_edit .personintegrationtest .columns ]]
205
205
name = " field_array_u8"
206
- rust_type = " Option < [u8 ; 99] >"
206
+ rust_type = " Option < [u8; 99] >"
207
207
sql_type = " BLOB"
208
208
209
209
[[output_generated_tables_do_not_edit .personintegrationtest .columns ]]
@@ -278,7 +278,7 @@ sql_type = "BLOB NOT NULL"
278
278
279
279
[[output_generated_tables_do_not_edit .personintegrationtest .columns ]]
280
280
name = " field_array_u8_not_null"
281
- rust_type = " [u8 ; 5]"
281
+ rust_type = " [u8; 5]"
282
282
sql_type = " BLOB NOT NULL"
283
283
284
284
[[output_generated_tables_do_not_edit .personintegrationtest .columns ]]
Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ struct MiniColumn {
68
68
}
69
69
70
70
static OPTION_U8_ARRAY_RE : Lazy < regex:: Regex > =
71
- Lazy :: new ( || regex:: Regex :: new ( r"^Option < \[u8 ; \ d+\] >$" ) . unwrap ( ) ) ;
71
+ Lazy :: new ( || regex:: Regex :: new ( r"^Option\s*<\s*\[\s*u8\s*;\s*\ d+\s*\]\s* >$" ) . unwrap ( ) ) ;
72
72
static U8_ARRAY_RE : Lazy < regex:: Regex > =
73
- Lazy :: new ( || regex:: Regex :: new ( r"^\[u8 ; \d+ \]$" ) . unwrap ( ) ) ;
73
+ Lazy :: new ( || regex:: Regex :: new ( r"^\[\s*u8\s*;\s*\d+\s* \]$" ) . unwrap ( ) ) ;
74
74
75
75
#[ derive( Clone , Debug ) ]
76
76
struct SingleColumn {
You can’t perform that action at this time.
0 commit comments