We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecbbbeb commit 29314f9Copy full SHA for 29314f9
2 files changed
examples/sushi/models/top_waiters.sql
@@ -24,7 +24,6 @@ WHERE
24
SELECT
25
MAX(event_date)
26
FROM sushi.waiter_revenue_by_day
27
- )
28
-ORDER BY
+ BY
29
revenue DESC
30
LIMIT 10
vscode/react/src/pages/lineage.tsx
@@ -58,6 +58,7 @@ function Lineage() {
58
if (isLoadingModels || models === undefined) {
59
return <div>Loading models...</div>
60
}
61
+ console.log("models", models)
62
if (!Array.isArray(models)) {
63
return <div>Error: Models data is not in the expected format</div>
64
0 commit comments