Help for sql.infer_type

Project

sql

Function

infer_type

Sample CLI

gway sql infer-type

References

['infer_type']

Full Code

def infer_type(val):
    return gw.infer_type(
        val,
        INTEGER=int,
        REAL=float
    ) or "TEXT"