File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 7272
7373# Test measure extraction if present
7474query I
75- SELECT COUNT(*) >= 0 FROM (SELECT unnest(pbix2vpax('data/contoso .pbix').Measures));
75+ SELECT COUNT(*) >= 0 FROM (SELECT unnest(pbix2vpax('data/Contoso .pbix').Measures));
7676----
7777true
7878
7979# Test that Relationships array is populated
8080query I
81- SELECT list_count(pbix2vpax('data/contoso .pbix').Relationships) >= 0 ;
81+ SELECT list_count(pbix2vpax('data/Contoso .pbix').Relationships) >= 0 ;
8282----
8383true
8484
@@ -87,7 +87,7 @@ query II
8787SELECT
8888 tab.TableName,
8989 tab.TableSize > 0
90- FROM (select unnest(pbix2vpax('data/contoso .pbix').Tables) as tab)
90+ FROM (select unnest(pbix2vpax('data/Contoso .pbix').Tables) as tab)
9191ORDER BY 1 LIMIT 2;
9292----
9393Currency true
@@ -98,7 +98,7 @@ query II
9898SELECT
9999 col.ColumnName,
100100 col.ColumnCardinality > 0
101- FROM (select unnest(pbix2vpax('data/contoso .pbix').Columns) as col)
101+ FROM (select unnest(pbix2vpax('data/Contoso .pbix').Columns) as col)
102102WHERE col.TableName = 'Currency'
103103ORDER BY 1
104104LIMIT 3;
@@ -112,7 +112,7 @@ query II
112112SELECT
113113 col.ColumnName,
114114 col.Encoding
115- FROM (select unnest(pbix2vpax('data/contoso .pbix').Columns) as col)
115+ FROM (select unnest(pbix2vpax('data/Contoso .pbix').Columns) as col)
116116WHERE col.TableName = 'Currency'
117117ORDER BY 1
118118LIMIT 4;
You can’t perform that action at this time.
0 commit comments