@@ -53,8 +53,8 @@ protected <T> T processSchemaResultSet(
53
53
ExtractionContext .ResultSetProcessor <T > processor )
54
54
throws SQLException {
55
55
try ( ResultSet resultSet =
56
- getJdbcDatabaseMetaData ()
57
- .getSchemas ( catalog , schemaPattern ) ) {
56
+ getJdbcDatabaseMetaData ()
57
+ .getSchemas ( catalog , schemaPattern ) ) {
58
58
return processor .process ( resultSet );
59
59
}
60
60
}
@@ -68,8 +68,8 @@ protected <T> T processTableResultSet(
68
68
ExtractionContext .ResultSetProcessor <T > processor )
69
69
throws SQLException {
70
70
try ( ResultSet resultSet =
71
- getJdbcDatabaseMetaData ()
72
- .getTables ( catalog , schemaPattern , tableNamePattern , types ) ) {
71
+ getJdbcDatabaseMetaData ()
72
+ .getTables ( catalog , schemaPattern , tableNamePattern , types ) ) {
73
73
return processor .process ( resultSet );
74
74
}
75
75
}
@@ -83,8 +83,8 @@ protected <T> T processColumnsResultSet(
83
83
ExtractionContext .ResultSetProcessor <T > processor )
84
84
throws SQLException {
85
85
try ( ResultSet resultSet =
86
- getJdbcDatabaseMetaData ()
87
- .getColumns ( catalog , schemaPattern , tableNamePattern , columnNamePattern ) ) {
86
+ getJdbcDatabaseMetaData ()
87
+ .getColumns ( catalog , schemaPattern , tableNamePattern , columnNamePattern ) ) {
88
88
return processor .process ( resultSet );
89
89
}
90
90
}
@@ -97,8 +97,8 @@ protected <T> T processPrimaryKeysResultSet(
97
97
ExtractionContext .ResultSetProcessor <T > processor )
98
98
throws SQLException {
99
99
try ( ResultSet resultSet =
100
- getJdbcDatabaseMetaData ()
101
- .getPrimaryKeys ( catalogFilter , schemaFilter , tableName .getText () ) ) {
100
+ getJdbcDatabaseMetaData ()
101
+ .getPrimaryKeys ( catalogFilter , schemaFilter , tableName .getText () ) ) {
102
102
return processor .process ( resultSet );
103
103
}
104
104
}
@@ -113,8 +113,8 @@ protected <T> T processIndexInfoResultSet(
113
113
ExtractionContext .ResultSetProcessor <T > processor )
114
114
throws SQLException {
115
115
try ( ResultSet resultSet =
116
- getJdbcDatabaseMetaData ()
117
- .getIndexInfo ( catalog , schema , table , unique , approximate ) ) {
116
+ getJdbcDatabaseMetaData ()
117
+ .getIndexInfo ( catalog , schema , table , unique , approximate ) ) {
118
118
return processor .process ( resultSet );
119
119
}
120
120
}
@@ -127,8 +127,8 @@ protected <T> T processImportedKeysResultSet(
127
127
ExtractionContext .ResultSetProcessor <T > processor )
128
128
throws SQLException {
129
129
try ( ResultSet resultSet =
130
- getJdbcDatabaseMetaData ()
131
- .getImportedKeys ( catalog , schema , table ) ) {
130
+ getJdbcDatabaseMetaData ()
131
+ .getImportedKeys ( catalog , schema , table ) ) {
132
132
return processor .process ( resultSet );
133
133
}
134
134
}
@@ -144,9 +144,9 @@ protected <T> T processCrossReferenceResultSet(
144
144
ExtractionContext .ResultSetProcessor <T > processor )
145
145
throws SQLException {
146
146
try ( ResultSet resultSet =
147
- getJdbcDatabaseMetaData ()
148
- .getCrossReference ( parentCatalog , parentSchema , parentTable ,
149
- foreignCatalog , foreignSchema , foreignTable ) ) {
147
+ getJdbcDatabaseMetaData ()
148
+ .getCrossReference ( parentCatalog , parentSchema , parentTable ,
149
+ foreignCatalog , foreignSchema , foreignTable ) ) {
150
150
return processor .process ( resultSet );
151
151
}
152
152
}
0 commit comments