Skip to content

Instantly share code, notes, and snippets.

@Abhi-Codes
Created November 20, 2022 07:47
Show Gist options
  • Save Abhi-Codes/657cd03087a8f6b859c448a04f1555b6 to your computer and use it in GitHub Desktop.
Save Abhi-Codes/657cd03087a8f6b859c448a04f1555b6 to your computer and use it in GitHub Desktop.
Implement MetadataBuilderContributor interface
public class SQLFunctionContributor implements MetadataBuilderContributor {
@Override
public void contribute(MetadataBuilder metadataBuilder) {
metadataBuilder.applySqlFunction("json_contains_key",
new SQLFunctionTemplate(BooleanType.INSTANCE, "JSON_CONTAINS(?1, JSON_QUOTE(?2))"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment