We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2ea5a commit 76cca6cCopy full SHA for 76cca6c
README.md
@@ -66,7 +66,7 @@ This case happens when you develop SQL queries with *Test-Driven Development* (T
66
67
You can read below an example where we define a dataset row for which we generate the INSERT statement:
68
```java
69
-SqlTestData quickSqlTestData = QuickSqlTestData.buildFrom(dataSource);
+QuickSqlTestData quickSqlTestData = QuickSqlTestData.buildFrom(dataSource);
70
DatasetRow datasetRow = DatasetRow.ofTable("Player")
71
.addColumnValue("lastName","Pogba");
72
List<String> insertStatements = quickSqlTestData.generateInsertListFor(datasetRow);
0 commit comments