@@ -6708,10 +6708,10 @@ async fn inline_tables(service: Box<dyn SqlClient>) {
67086708 ) ;
67096709
67106710 let columns = vec ! [
6711- Column :: new( "ID " . to_string( ) , ColumnType :: Int , 0 ) ,
6712- Column :: new( "LastName " . to_string( ) , ColumnType :: String , 1 ) ,
6713- Column :: new( "FirstName " . to_string( ) , ColumnType :: String , 2 ) ,
6714- Column :: new( "Timestamp " . to_string( ) , ColumnType :: Timestamp , 3 ) ,
6711+ Column :: new( "id " . to_string( ) , ColumnType :: Int , 0 ) ,
6712+ Column :: new( "lastname " . to_string( ) , ColumnType :: String , 1 ) ,
6713+ Column :: new( "firstname " . to_string( ) , ColumnType :: String , 2 ) ,
6714+ Column :: new( "timestamp " . to_string( ) , ColumnType :: Timestamp , 3 ) ,
67156715 ] ;
67166716 let rows = vec ! [
67176717 Row :: new( vec![
@@ -6740,7 +6740,7 @@ async fn inline_tables(service: Box<dyn SqlClient>) {
67406740 ] ) ,
67416741 ] ;
67426742 let data = Arc :: new ( DataFrame :: new ( columns, rows. clone ( ) ) ) ;
6743- let inline_tables = vec ! [ InlineTable :: new( 1000 , "Persons " . to_string( ) , data) ] ;
6743+ let inline_tables = vec ! [ InlineTable :: new( 1000 , "persons " . to_string( ) , data) ] ;
67446744
67456745 let context = SqlQueryContext :: default ( ) . with_inline_tables ( & inline_tables) ;
67466746 let result = service
@@ -6849,9 +6849,9 @@ async fn inline_tables_2x(service: Box<dyn SqlClient>) {
68496849 . unwrap ( ) ;
68506850
68516851 let columns = vec ! [
6852- Column :: new( "ID " . to_string( ) , ColumnType :: Int , 0 ) ,
6853- Column :: new( "Last " . to_string( ) , ColumnType :: String , 1 ) ,
6854- Column :: new( "First " . to_string( ) , ColumnType :: String , 2 ) ,
6852+ Column :: new( "id " . to_string( ) , ColumnType :: Int , 0 ) ,
6853+ Column :: new( "last " . to_string( ) , ColumnType :: String , 1 ) ,
6854+ Column :: new( "first " . to_string( ) , ColumnType :: String , 2 ) ,
68556855 ] ;
68566856 let rows = vec ! [
68576857 Row :: new( vec![
@@ -6890,8 +6890,8 @@ async fn inline_tables_2x(service: Box<dyn SqlClient>) {
68906890 let data = Arc :: new ( DataFrame :: new ( columns. clone ( ) , rows. clone ( ) ) ) ;
68916891 let data2 = Arc :: new ( DataFrame :: new ( columns. clone ( ) , rows2. clone ( ) ) ) ;
68926892 let inline_tables = vec ! [
6893- InlineTable :: new( 1000 , "Persons " . to_string( ) , data) ,
6894- InlineTable :: new( 1001 , "Persons2 " . to_string( ) , data2) ,
6893+ InlineTable :: new( 1000 , "persons " . to_string( ) , data) ,
6894+ InlineTable :: new( 1001 , "persons2 " . to_string( ) , data2) ,
68956895 ] ;
68966896
68976897 let context = SqlQueryContext :: default ( ) . with_inline_tables ( & inline_tables) ;
0 commit comments