flink icon indicating copy to clipboard operation
flink copied to clipboard

[FLINK-28893][table] Add built-in conv function.

Open liuyongvs opened this issue 3 years ago • 2 comments

What is the purpose of the change

Add built-in conv function

Brief change log

  • Converts numbers between different number bases. Returns a string representation of the number N, converted from base from_base to base to_base. Returns NULL if any argument is NULL. The argument N is interpreted as an integer, but may be specified as an integer or a string. The minimum base is 2 and the maximum base is 36. If from_base is a negative number, N is regarded as a signed number. Otherwise, N is treated as unsigned. CONV() works with 64-bit precision.

Does this pull request potentially affect one of the following parts:

  • Dependencies (does it add or upgrade a dependency): (no)
  • The public API, i.e., is any changed class annotated with @Public(Evolving): (no)
  • The serializers: ( no)
  • The runtime per-record code paths (performance sensitive): (no)
  • Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn, ZooKeeper: (no)
  • The S3 file system connector: (no)

Documentation

  • Does this pull request introduce a new feature? (yes)
  • If yes, how is the feature documented? (docs)

liuyongvs avatar Sep 05 '22 05:09 liuyongvs

CI report:

  • 5ebb26ec28393522aa25f643a3669509c32ddc8a Azure: SUCCESS
Bot commands The @flinkbot bot supports the following commands:
  • @flinkbot run azure re-run the last Azure build

flinkbot avatar Sep 05 '22 05:09 flinkbot

hi @twalthr do you have time to review it, thanks?

liuyongvs avatar Sep 07 '22 12:09 liuyongvs