We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d892e74 commit 19396dbCopy full SHA for 19396db
README.md
@@ -290,7 +290,7 @@ SET execution.type=streaming;
290
```
291
292
293
-USE CATALOG default_catalog;
+USE CATALOG hive;
294
295
296
@@ -299,7 +299,7 @@ SELECT
299
o_orderpriority AS `priority`,
300
COUNT(DISTINCT c_custkey) AS `number_of_customers`,
301
COUNT(o_orderkey) AS `number_of_orders`
302
-FROM prod_orders
+FROM default_catalog.default_database.prod_orders
303
JOIN prod_customer ON o_custkey = c_custkey
304
JOIN prod_nation ON c_nationkey = n_nationkey
305
JOIN prod_region ON n_regionkey = r_regionkey
0 commit comments