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