@@ -53,8 +53,8 @@ protected <T> T processSchemaResultSet(
5353 ExtractionContext .ResultSetProcessor <T > processor )
5454 throws SQLException {
5555 try ( ResultSet resultSet =
56- getJdbcDatabaseMetaData ()
57- .getSchemas ( catalog , schemaPattern ) ) {
56+ getJdbcDatabaseMetaData ()
57+ .getSchemas ( catalog , schemaPattern ) ) {
5858 return processor .process ( resultSet );
5959 }
6060 }
@@ -68,8 +68,8 @@ protected <T> T processTableResultSet(
6868 ExtractionContext .ResultSetProcessor <T > processor )
6969 throws SQLException {
7070 try ( ResultSet resultSet =
71- getJdbcDatabaseMetaData ()
72- .getTables ( catalog , schemaPattern , tableNamePattern , types ) ) {
71+ getJdbcDatabaseMetaData ()
72+ .getTables ( catalog , schemaPattern , tableNamePattern , types ) ) {
7373 return processor .process ( resultSet );
7474 }
7575 }
@@ -83,8 +83,8 @@ protected <T> T processColumnsResultSet(
8383 ExtractionContext .ResultSetProcessor <T > processor )
8484 throws SQLException {
8585 try ( ResultSet resultSet =
86- getJdbcDatabaseMetaData ()
87- .getColumns ( catalog , schemaPattern , tableNamePattern , columnNamePattern ) ) {
86+ getJdbcDatabaseMetaData ()
87+ .getColumns ( catalog , schemaPattern , tableNamePattern , columnNamePattern ) ) {
8888 return processor .process ( resultSet );
8989 }
9090 }
@@ -97,8 +97,8 @@ protected <T> T processPrimaryKeysResultSet(
9797 ExtractionContext .ResultSetProcessor <T > processor )
9898 throws SQLException {
9999 try ( ResultSet resultSet =
100- getJdbcDatabaseMetaData ()
101- .getPrimaryKeys ( catalogFilter , schemaFilter , tableName .getText () ) ) {
100+ getJdbcDatabaseMetaData ()
101+ .getPrimaryKeys ( catalogFilter , schemaFilter , tableName .getText () ) ) {
102102 return processor .process ( resultSet );
103103 }
104104 }
@@ -113,8 +113,8 @@ protected <T> T processIndexInfoResultSet(
113113 ExtractionContext .ResultSetProcessor <T > processor )
114114 throws SQLException {
115115 try ( ResultSet resultSet =
116- getJdbcDatabaseMetaData ()
117- .getIndexInfo ( catalog , schema , table , unique , approximate ) ) {
116+ getJdbcDatabaseMetaData ()
117+ .getIndexInfo ( catalog , schema , table , unique , approximate ) ) {
118118 return processor .process ( resultSet );
119119 }
120120 }
@@ -127,8 +127,8 @@ protected <T> T processImportedKeysResultSet(
127127 ExtractionContext .ResultSetProcessor <T > processor )
128128 throws SQLException {
129129 try ( ResultSet resultSet =
130- getJdbcDatabaseMetaData ()
131- .getImportedKeys ( catalog , schema , table ) ) {
130+ getJdbcDatabaseMetaData ()
131+ .getImportedKeys ( catalog , schema , table ) ) {
132132 return processor .process ( resultSet );
133133 }
134134 }
@@ -144,9 +144,9 @@ protected <T> T processCrossReferenceResultSet(
144144 ExtractionContext .ResultSetProcessor <T > processor )
145145 throws SQLException {
146146 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 ) ) {
150150 return processor .process ( resultSet );
151151 }
152152 }
0 commit comments