Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lakebench"
version = "1.2.0"
version = "1.2.1"
authors = [
{ name="Miles Cole" },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ SELECT
SUM(
CASE
WHEN NOT ssci.customer_sk IS NULL AND csci.customer_sk IS NULL
THEN 1
ELSE 0
THEN CAST(1 AS BIGINT)
ELSE CAST(0 AS BIGINT)
END
) AS store_only,
SUM(
CASE
WHEN ssci.customer_sk IS NULL AND NOT csci.customer_sk IS NULL
THEN 1
ELSE 0
THEN CAST(1 AS BIGINT)
ELSE CAST(0 AS BIGINT)
END
) AS catalog_only,
SUM(
CASE
WHEN NOT ssci.customer_sk IS NULL AND NOT csci.customer_sk IS NULL
THEN 1
ELSE 0
THEN CAST(1 AS BIGINT)
ELSE CAST(0 AS BIGINT)
END
) AS store_and_catalog
FROM ssci
Expand Down
Loading