leaves12138 opened a new pull request, #2296:
URL: https://github.com/apache/incubator-paimon/pull/2296
### Purpose
Support spark sort procedure with order and zorder.
Usage :
CALL sort_compact('<database_name>.<table_name>', '<order/zorder>',
'<column1>[,column2]...', ['<conditions>'])
example:
set spark.sql.shuffle.partitions=10;
CALL sort_compact('my_db.Orders1', 'zorder', 'f1,f2', 'f0=0');
conditions: "," means "AND" ";" means "OR"
If you want sort compact two partition date=01 and date=02, you need to
write 'date=01;date=02'
If you want sort one partition with date=01 and day=01, you need to write
'date=01,day=01'
### Documentation
Wait to add
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]