let mut stmt = Statement::new("SELECT * , \
ARRAY (SELECT AS STRUCT * FROM UserItem WHERE UserId = @Param1 ) AS UserItem, \
ARRAY (SELECT AS STRUCT * FROM UserCharacter WHERE UserId = @Param1 ) AS UserCharacter \
FROM User \
WHERE UserId = @Param1");
Hi,
I noticed
google_cloud_spanner
supports multiple reads:Suppose we wanted to add one more interleaved Spanner table:
Is this possible with this crate?