MCPcopy Create free account
hub / github.com/actiontech/dtle / LimitSize

Function LimitSize

driver/oracle/extractor/sql_parse.go:425–430  ·  view source on GitHub ↗

MySQL DEC/DECIMAL/NUMERIC type max scale is 30

(dec int)

Source from the content-addressed store, hash-verified

423
424// MySQL DEC/DECIMAL/NUMERIC type max scale is 30
425func LimitSize(dec int) int {
426 if dec > 30 {
427 return 30
428 }
429 return dec
430}
431
432func IdentifierToString(i *oracle_element.Identifier) string {
433 if i == nil {

Callers 1

oracleTp2MySQLTpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected