mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
- Remove a signed/unsigned warning.
modified: storage/connect/jsonudf.cpp
This commit is contained in:
@@ -232,7 +232,7 @@ static PSZ MakeKey(PGLOBAL g, UDF_ARGS *args, int i)
|
||||
/***********************************************************************/
|
||||
static PJVAL MakeValue(PGLOBAL g, UDF_ARGS *args, int i)
|
||||
{
|
||||
char *sap = (args->arg_count > i) ? args->args[i] : NULL;
|
||||
char *sap = (args->arg_count > (unsigned)i) ? args->args[i] : NULL;
|
||||
PJSON jsp;
|
||||
PJVAL jvp = new(g) JVALUE;
|
||||
|
||||
|
Reference in New Issue
Block a user