@@ -228,7 +228,7 @@ mod test {
228
228
let col = Column :: new ( "id" , 9 ) ;
229
229
let error = col. data_type ( & schema) . expect_err ( "error" ) . strip_backtrace ( ) ;
230
230
assert ! ( "Internal error: PhysicalExpr Column references column 'id' at index 9 (zero-based) \
231
- but input schema only has 1 columns: [\" foo\" ]. This was likely caused by a bug in \
231
+ but input schema only has 1 columns: [\" foo\" ].\n This was likely caused by a bug in \
232
232
DataFusion's code and we would welcome that you file an bug report in our issue tracker". starts_with( & error) )
233
233
}
234
234
@@ -238,7 +238,7 @@ mod test {
238
238
let col = Column :: new ( "id" , 9 ) ;
239
239
let error = col. nullable ( & schema) . expect_err ( "error" ) . strip_backtrace ( ) ;
240
240
assert ! ( "Internal error: PhysicalExpr Column references column 'id' at index 9 (zero-based) \
241
- but input schema only has 1 columns: [\" foo\" ]. This was likely caused by a bug in \
241
+ but input schema only has 1 columns: [\" foo\" ].\n This was likely caused by a bug in \
242
242
DataFusion's code and we would welcome that you file an bug report in our issue tracker". starts_with( & error) )
243
243
}
244
244
@@ -250,7 +250,7 @@ mod test {
250
250
let col = Column :: new ( "id" , 9 ) ;
251
251
let error = col. evaluate ( & batch) . expect_err ( "error" ) . strip_backtrace ( ) ;
252
252
assert ! ( "Internal error: PhysicalExpr Column references column 'id' at index 9 (zero-based) \
253
- but input schema only has 1 columns: [\" foo\" ]. This was likely caused by a bug in \
253
+ but input schema only has 1 columns: [\" foo\" ].\n This was likely caused by a bug in \
254
254
DataFusion's code and we would welcome that you file an bug report in our issue tracker". starts_with( & error) ) ;
255
255
Ok ( ( ) )
256
256
}
0 commit comments