flink-cdc icon indicating copy to clipboard operation
flink-cdc copied to clipboard

[DOC] When type is number,update doc

Open wangxiaojing opened this issue 3 years ago • 3 comments

Oracle type Flink SQL type
NUMBER(p, s > 0) s >= 38 or (s < 38 , p + s > 38) STRING
-- --
NUMBER(p, s > 0) s < 38,p + s = <38 DECIMAL(p + s , s)

eg:

  1. number(1,37) : s < 38 p+s =38 0.0000000000000000000000000000000000001 decimal(38,37)

2.number(2,4) decimal(2,4 ) is error ,because p must have a value between 1 and 38 (both inclusive). s must have a value between 0 and p (both inclusive).

wangxiaojing avatar Dec 06 '22 11:12 wangxiaojing

Thanks for your contribution! Could you please rebase it with latest master branch?

yuxiqian avatar Apr 26 '24 02:04 yuxiqian

This pull request has been automatically marked as stale because it has not had recent activity for 60 days. It will be closed in 30 days if no further activity occurs.

github-actions[bot] avatar Jul 17 '24 00:07 github-actions[bot]