Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8280841: Update SQLite to 3.37.2
Backport-of: 6b7b463cd2286658ad7d236824ded9b1020329e7
  • Loading branch information
arapte committed Apr 29, 2022
1 parent 5c0d0a6 commit e05362c
Show file tree
Hide file tree
Showing 5 changed files with 19,305 additions and 11,247 deletions.
@@ -0,0 +1,26 @@
Updating SQLite in OpenJFX:

1. Find the current version of the SQLite used in JavaFX from VERSION.txt

2. Check if there are any JavaFX specific changes in SQLite source:
- Compare the SQLite source files from JavaFX workspace with the source files
corresponding to same version on https://www.sqlite.org/index.html
- Currently there are no JavaFX specific changes made in SQLite source.
In case you find any changes make sure to retain them with update.

3. Get the source code of required release version of SQLite.
- Download the amalgamation code for the release from https://www.sqlite.org
- For example, the SQLite 3.37.2 amalgamation is named as "sqlite-amalgamation-3370200.zip".
- FYI about amalgamation:
- The amalgamation contains everything a library may need to include SQLite.
- Over 100 separate source files are concatenated into a single large C file
named "sqlite3.c" and referred as "the amalgamation".

4. Update the SQLite source files in JavaFX from the downloaded amalgamation source.
- Retain JavaFX changes, if any.

5. Update the new version in VERSION.txt.

6. Perform build and sanity testing.

7. Expand tabs and remove trailing white spaces from source files.
@@ -1 +1 @@
3.32.3
3.37.2

1 comment on commit e05362c

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.