Skip to content

Commit

Permalink
Add a comment on unsupported projections in kafka server
Browse files Browse the repository at this point in the history
  • Loading branch information
echauchot committed Feb 26, 2025
1 parent 7ca5710 commit 21fc8df
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ IMPORT ecommerceTs.Customer; --base table = Customer
-- Orders has nested data `entries` (see orders.schema.yml)
IMPORT ecommerceTs.Orders; --base table = Orders

-- projections are not supported on kafka engine
-- rootFunction($i : INT) := SUBSCRIBE SELECT id FROM Orders WHERE id = $i; -- no base table
rootFunctionWithBaseTable($i : INT) := SUBSCRIBE SELECT * FROM Orders WHERE id = $i; -- base table = Orders
rootFunctionWithBaseTable2($i : INT) := SELECT * FROM Orders WHERE id = $i; -- base table = Orders
Expand Down

0 comments on commit 21fc8df

Please sign in to comment.