@@ -32,7 +32,7 @@ public class PostgresTableGenerator {
3232 private boolean generateOnlyKnown ;
3333 private PostgresGlobalState globalState ;
3434
35- public PostgresTableGenerator (String tableName , Randomly r , PostgresSchema newSchema , boolean generateOnlyKnown ,
35+ public PostgresTableGenerator (String tableName , PostgresSchema newSchema , boolean generateOnlyKnown ,
3636 PostgresGlobalState globalState ) {
3737 this .tableName = tableName ;
3838 this .newSchema = newSchema ;
@@ -57,9 +57,9 @@ public PostgresTableGenerator(String tableName, Randomly r, PostgresSchema newSc
5757 PostgresCommon .addCommonTableErrors (errors );
5858 }
5959
60- public static Query generate (String tableName , Randomly r , PostgresSchema newSchema , boolean generateOnlyKnown ,
60+ public static Query generate (String tableName , PostgresSchema newSchema , boolean generateOnlyKnown ,
6161 PostgresGlobalState globalState ) {
62- return new PostgresTableGenerator (tableName , r , newSchema , generateOnlyKnown , globalState ).generate ();
62+ return new PostgresTableGenerator (tableName , newSchema , generateOnlyKnown , globalState ).generate ();
6363 }
6464
6565 private Query generate () {
0 commit comments