Skip to content

Commit

Permalink
FIX: Adjust the Flight-Analysis.sql example script (#153)
Browse files Browse the repository at this point in the history
- The flight_number is now stored on table FLIGHT (and not AIRCRAFT anymore)
  • Loading branch information
till213 committed May 22, 2024
1 parent 441d900 commit 72043d2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@

## Bug Fixes

## 0.17.2

### Bug Fixes
- Fix the example [Flight-Analysis.sql](doc/SQL/Flight-Analysis.sql) script (documentation)
* The *flight_number* is now stored on *flight* level (and not per *aircraft* anymore)

## 0.17.1

## Improvements
Expand Down
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
### Settings
- Ensure that settings are converted to latest version in [SettingsConverter.cpp](src/Kernel/src/SettingsConverter.cpp)

### Documentation
- Ensure that the [example SQL](doc/SQL) still works

### Git
- Push all changes
- Merge all feature / bug fix branches into main (https://github.com/till213/SkyDolly/pulls)
Expand Down
2 changes: 1 addition & 1 deletion doc/SQL/Flight-Analysis.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ limit 1
select f.id as flight_id,
f.start_zulu_sim_time,
f.end_zulu_sim_time,
f.flight_number,
a.type,
a.flight_number,
p.timestamp,
p.latitude,
p.longitude,
Expand Down

0 comments on commit 72043d2

Please sign in to comment.