Fix nullability check for inner joins in postgres (#1863)

This commit is contained in:
Oskar Persson
2022-06-01 02:58:38 +02:00
committed by GitHub
parent 5d91ffc81c
commit 63291d677f
2 changed files with 4 additions and 6 deletions

View File

@@ -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?;