You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using last gitbase v0.20.0 and v0.20.0-demo1 too I am trying to execute the following query:
SELECT COUNT(*)
FROM repositories
LEFT JOIN (
SELECT repository_id, commit_hash
FROM refs
WHERE ref_name = "refs/heads/master"
) q ON repositories.repository_id = q.repository_id
I filter by ref_name so I expect to get the number not more than rows in repositories table, but I get much more. Here is my output:
using last gitbase
v0.20.0
andv0.20.0-demo1
too I am trying to execute the following query:I filter by
ref_name
so I expect to get the number not more than rows inrepositories
table, but I get much more. Here is my output:Result
`SELECT * FROM repositories` Gives
So I get 12*12 rows for some reason.
The text was updated successfully, but these errors were encountered: