-
Hi there, I am trying to partitioni data in specific way, like spark sql below: SELECT /*+ COALESCE(3) */ * FROM t;
SELECT /*+ REPARTITION(3) */ * FROM t;
SELECT /*+ REPARTITION(c) */ * FROM t;
SELECT /*+ REPARTITION(3, c) */ * FROM t;
SELECT /*+ REPARTITION_BY_RANGE(c) */ * FROM t;
SELECT /*+ REPARTITION_BY_RANGE(3, c) */ * FROM t;
SELECT /*+ REBALANCE */ * FROM t;
SELECT /*+ REBALANCE(3) */ * FROM t;
SELECT /*+ REBALANCE(c) */ * FROM t;
SELECT /*+ REBALANCE(3, c) */ * FROM t; So there any way to implement or mock the operation? |
Beta Was this translation helpful? Give feedback.
Answered by
cpcloud
Feb 25, 2025
Replies: 1 comment
-
There's no Ibis-native way to express query hints at the moment, however, you can always build an expression using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ted0928
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's no Ibis-native way to express query hints at the moment, however, you can always build an expression using
con.sql
ortable.sql
and that SQL can itself contain query hints.