mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-23 10:38:57 +00:00
Fix nullability check for inner joins in postgres (#1863)
This commit is contained in:
@@ -841,8 +841,8 @@ async fn test_describe_outer_join_nullable() -> anyhow::Result<()> {
|
||||
let describe = conn
|
||||
.describe(
|
||||
"select tweet.id
|
||||
from (values (null)) vals(val)
|
||||
inner join tweet on false",
|
||||
from tweet
|
||||
inner join products on products.name = tweet.text",
|
||||
)
|
||||
.await?;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user