[jOOQ/jOOQ#14653] Add IS JSON support
This commit is contained in:
parent
9a641b5b91
commit
6cd1481da2
@ -98,6 +98,9 @@ implements
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
@ -125,6 +128,11 @@ implements
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
default:
|
||||
ctx.visit(field).sql(' ').visit(K_IS_JSON);
|
||||
break;
|
||||
|
||||
@ -107,6 +107,11 @@ implements
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
default:
|
||||
ctx.visit(field).sql(' ').visit(K_IS_NOT_JSON);
|
||||
break;
|
||||
|
||||
@ -83,6 +83,7 @@ final class Names {
|
||||
static final Name N_BYTE_LENGTH = systemName("byte_length");
|
||||
static final Name N_CAST = systemName("cast");
|
||||
static final Name N_CHARINDEX = systemName("charindex");
|
||||
static final Name N_CHECK_JSON = systemName("check_json");
|
||||
static final Name N_CHOOSE = systemName("choose");
|
||||
static final Name N_COLLECT = systemName("collect");
|
||||
static final Name N_CONCAT = systemName("concat");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user