Skip to content

Commit d98adf8

Browse files
authored
Fix Total Tables widget in assessment to only show table counts (#3738)
## Changes Fix `Total Tables` widget in assessment dashboard by filtering out views ### Linked issues Resolves #3252 ### Functionality - [ ] fix dashboard widget ### Tests - [x] manually tested
1 parent dae71bf commit d98adf8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/* --title 'Total Tables' */
22
SELECT
33
COUNT(*) AS count_total_tables
4-
FROM inventory.tables
4+
FROM inventory.tables
5+
WHERE
6+
object_type != 'VIEW'

0 commit comments

Comments
 (0)