Skip to content

v22.8.6.72-clib

Compare
Choose a tag to compare
@ch-devops ch-devops released this 12 Oct 22:55
· 40722 commits to Kusto-phase3 since this release

Release v22.8.6.72-clib

Image is published at icr.io/clickhouse/clickhouse:22.8.6.72-1-clib-ibm

  • This Release is on top of v22.8.6.71-lts
  • From branch Kusto-phase3

October 12, 2022

operator

  • distinct
    Customers | distinct *
    Customers | distinct Occupation
    Customers | distinct Occupation, Education
    Customers | where Age <30 | distinct Occupation, Education
    Customers | where Age <30 | order by Age| distinct Occupation, Education

String functions

  • reverse
    print reverse(123)
    print reverse(123.34)
    print reverse('clickhouse')
    print reverse(3h)
    print reverse(datetime(2017-1-1 12:23:34))

  • parse_command_line
    print parse_command_line('echo \"hello world!\" print$?', \"Windows\")

  • parse_csv
    print result=parse_csv('aa,b,cc')
    print result_multi_record=parse_csv('record1,a,b,c\nrecord2,x,y,z')

  • parse_json
    print parse_json( dynamic([1, 2, 3]))
    print parse_json('{"a":123.5, "b":"{\\"c\\":456}"}')

  • extract_json
    print extract_json( "$.a" , '{"a":123, "b":"{\\"c\\":456}"}' , typeof(int))

  • parse_version
    print parse_version('1')
    print parse_version('1.2.3.40')

Bug fixed