Project
Function
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"
sql.infer_type
gway sql infer-type
['infer_type']
def infer_type(val):
return gw.infer_type(
val,
INTEGER=int,
REAL=float
) or "TEXT"