Skip to content

integer (TP009)#

Automatic fix is available.

What it does#

Checks for usage of integer.

Why not?#

Integer can store values up to 2.147 Billion which can lead to integer overflow once the max value is reached. The fire drill when you run out of integers is not cheap.

When should you?#

Tables that store limited lookup options.

Use instead:#

bigint.