Skip to main content
Moderne OnlyThis recipe is proprietary to Moderne and runs on the Moderne platform or CLI — it isn’t part of the open-source catalog. Available with a Moderne subscription.Contact Sales

Find SQL usage

Recipe IDio.moderne.prethink.calm.FindSqlUsage
Artifactio.moderne.recipe:rewrite-prethink

Locate SQL statements in code and resources, and attribute the physical tables and columns each touches to the class and method that issues it. Emits one row per statement per table, joining sql-anti-patterns.csv on source path and line number, and method-quality-metrics.csv and test-gaps.csv on class name and method signature.

Single recipeOpenRewriteModerne Proprietary License
Try in PlatformTry this recipe in the Moderne platform. Not a user yet? You’ll get a no-setup demo environment, with nothing to install or configure.

Usage

Run this recipe

This recipe has no required configuration options. Users of Moderne can run it via the Moderne CLI.

You will need to have configured the Moderne CLI on your machine before you can run the following command.

shell
mod run . --recipe FindSqlUsage

If the recipe is not available locally, then you can install it using:

RELEASE resolves to the newest release and LATEST to the newest build of any kind, including snapshots. Either one lets mod config recipes upgrade pull in later versions without editing this command; a pinned version stays where you put it.

mod config recipes jar install io.moderne.recipe:rewrite-prethink:RELEASE

Data tables

SQL usage
io.moderne.prethink.table.SqlUsage

Physical tables and columns each SQL statement touches, attributed to the class and method that issues it.

ColumnDescription
Source pathThe path to the source file containing the SQL.
Line numberThe line the SQL statement begins on. Together with the source path this joins a row in sql-anti-patterns.csv to the method that issues the query.
Class nameThe fully qualified name of the class issuing the statement, or of the MyBatis mapper interface a mapper XML declares as its namespace. Empty for a .sql file or any other resource that names no class.
Method nameThe simple name of the method issuing the statement, or the id of the MyBatis statement, which is the mapper interface method it implements. Empty for SQL outside any method.
Method signatureThe full method signature including parameter types, joining method-quality-metrics.csv and test-gaps.csv. Empty where the SQL is not inside a method, including in mapper XML, where the method is named but its parameter types are not known.
LanguageThe language of the file the statement is written in, e.g. java, kotlin, csharp, python, xml, or sql for a plain .sql file.
Embedded inHow the statement is written: literal for a single string literal, concatenation for one assembled with + or StringBuilder.append, interpolation for an interpolated or template string, or file, xml, yaml or json for a statement carried by a resource.
TableThe physical table this row reports on. A statement touching several tables contributes one row per table.
OperationsThe operations the statement performs on this table, comma-separated in SELECT,UPDATE,INSERT,DELETE,CREATE,ALTER order. A write that also reads the table, as an UPDATE ... WHERE does, reports both.
ColumnsThe columns of this table the statement names, comma-separated, or * where it selects them all. Empty where no column can be attributed to the table with certainty, which a DELETE or an ambiguous join produces.
DynamicWhether the statement is assembled at runtime, from an interpolated string, from a concatenation with a non-constant operand, or from a mapper XML statement with conditional elements nested in it, in which case the query below is only the static part of what actually runs.
QueryThe SQL statement, truncated to 200 characters. Read the source at the path and line above for the whole of a longer statement.
Source files that had results
org.openrewrite.table.SourcesFileResults

Source files that were modified by the recipe run.

ColumnDescription
Source path before the runThe source path of the file before the run. null when a source file was created during the run.
Source path after the runA recipe may modify the source path. This is the path after the run. null when a source file was deleted during the run.
Parent of the recipe that made changesIn a hierarchical recipe, the parent of the recipe that made a change. Empty if this is the root of a hierarchy or if the recipe is not hierarchical at all.
Recipe that made changesThe specific recipe that made a change.
Estimated time savingAn estimated effort that a developer to fix manually instead of using this recipe, in unit of seconds.
CycleThe recipe cycle in which the change was made.
Source files that had search results
org.openrewrite.table.SearchResults

Search results that were found during the recipe run.

ColumnDescription
Source path of search result before the runThe source path of the file with the search result markers present.
Source path of search result after run the runA recipe may modify the source path. This is the path after the run. null when a source file was deleted during the run.
ResultThe trimmed printed tree of the LST element that the marker is attached to.
DescriptionThe content of the description of the marker.
Recipe that added the search markerThe specific recipe that added the Search marker.
Source files that errored on a recipe
org.openrewrite.table.SourcesFileErrors

The details of all errors produced by a recipe run.

ColumnDescription
Source pathThe file that failed to parse.
Recipe that made changesThe specific recipe that made a change.
Stack traceThe stack trace of the failure.
Recipe performance
org.openrewrite.table.RecipeRunStats

Statistics used in analyzing the performance of recipes.

ColumnDescription
The recipeThe recipe whose stats are being measured both individually and cumulatively.
Source file countThe number of source files the recipe ran over.
Source file changed countThe number of source files which were changed in the recipe run. Includes files created, deleted, and edited.
Cumulative scanning time (ns)The total time spent across the scanning phase of this recipe.
Max scanning time (ns)The max time scanning any one source file.
Cumulative edit time (ns)The total time spent across the editing phase of this recipe.
Max edit time (ns)The max time editing any one source file.