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