C Data Type Definition
typedef long long BIGINT;
Usage
Here is an example using BIGINT in a UDF definition and C function declaration.
SQL Function Definition | Equivalent C Function Declaration |
---|---|
CREATE FUNCTION F1( A BIGINT ) RETURNS BIGINT ...; |
void f1( BIGINT *a, BIGINT *result, ... ) { ... } |