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
Add dbt to runner test suite, other improvements. (#265)
* Add initial dbt test.
* Fix some runner issues, rename some queries to avoi confusion.
* Add stub flag for queries that return something, rather than nothing at all.
* Bump jdbc to avoid security warning.
@@ -91,15 +92,17 @@ Every client runs two categories of tests:
91
92
92
93
### Shared Queries (`queries.yaml`)
93
94
94
-
A YAML catalog of 44 queries across 5 suites that every client executes. A query passes if it executes without error (row counts are reported but not validated).
95
+
A YAML catalog of 58 queries across 5 suites that every client executes. A query passes if it executes without error (row counts are reported but not validated).
96
+
97
+
Queries may be tagged `stub: true` to indicate the underlying function or view returns a hardcoded dummy value (empty string, NULL, 0, false, or empty result set) rather than meaningful data. This distinguishes "won't crash your client" from "returns useful information" in the results.
0 commit comments