Skip to content

Commit

Permalink
SQL Statement (#511)
Browse files Browse the repository at this point in the history
- SQL statement correct for report
- v20240419
  • Loading branch information
loesler committed Apr 19, 2024
1 parent 7b36ba8 commit d8ba387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private void addAdjustmentDefinitions() throws SQLException {
String sql = "SELECT "
+ "\"type\", \"number_of_iterations\", "
+ "\"robust_estimation_limit\", \"estimate_direction_set_orientation_approximation\", "
+ "\"congruence_analysis\", \"export_covariance_matrix\" "
+ "\"congruence_analysis\" "
+ "FROM \"AdjustmentDefinition\" WHERE \"id\" = 1 LIMIT 1";

PreparedStatement stmt = this.dataBase.getPreparedStatement(sql);
Expand Down
2 changes: 1 addition & 1 deletion JAG3D/src/org/applied_geodesy/version/jag3d/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Version {
private final static Map<VersionType, Integer> versions = Map.of(
VersionType.ADJUSTMENT_CORE, 20231208,
VersionType.DATABASE, 20240417,
VersionType.USER_INTERFACE, 20240417
VersionType.USER_INTERFACE, 20240419
);

private Version() {}
Expand Down

0 comments on commit d8ba387

Please sign in to comment.