doric
doric copied to clipboard
Spark 3.3 new functions
Look into the following functions if they already are in doric or we have to add them:
From functions:
- [ ] def max_by(e: Column, ord: Column): Column
- [ ] def min_by(e: Column, ord: Column): Column
- [ ] def ceil(e: Column, scale: Column): Column
- [x] def cot(e: Column): Column
- [x] def csc(e: Column): Column
- [ ] def floor(e: Column, scale: Column): Column
- [x] def sec(e: Column): Column
- [x] def bit_length(e: Column): Column
- [ ] def lpad(str: Column, len: Int, pad: Array[Byte]): Column
- [x] def octet_length(e: Column): Column
- [ ] def rpad(str: Column, len: Int, pad: Array[Byte]): Column
- [ ] def localtimestamp(): Column
- [ ] def make_date(year: Column, month: Column, day: Column): Column
- [ ] def map_contains_key(column: Column, key: Any): Column
From column
- [ ] def ilike(literal: String): Column