-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Merge v1.3-ossivalis into main
#18188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
64 commits
Select commit
Hold shift + click to select a range
a4dce39
add missing hugeint to switch
73571b0
refactor extracting filter expressions for index scan
b298ba8
shared_ptr<HTTPUtil>& must be reached from FileOpener
carlopi 64998bd
Add missing `INT128` to decimal Parquet reader switch (#18104)
Mytherin 03a2ddf
shared_ptr<HTTPUtil>& must be reached from FileOpener (#18107)
Mytherin 534f567
Cleanup on correct branch (1.3-ossivalis) instead of v1.2-histrionicus
carlopi b541bec
Add v1.3.2 to version_map.json and generate storage_info
ZuleykhaPavlichenkova-TomTom 1ab52f4
Cleanup on correct branch (1.3-ossivalis) instead of v1.2-histrionicu…
Mytherin f590339
Refactor extracting expressions for dynamic index scans (#18095)
Mytherin e718d40
Absorb patch from https://github.com/duckdb/duckdb/pull/18107
carlopi b844381
Actually correctly skip building unnecessary extensions
carlopi 98066e1
Add v1.3.2 to version_map.json and generate storage_info.cpp (#18112)
Mytherin ed1c598
CI: Actually correctly skip building unnecessary extensions (#18119)
Mytherin 01b2cc7
Absorb patch from https://github.com/duckdb/duckdb/pull/18107 (#18114)
Mytherin ccba5de
fix issue #18124
d9964bd
throw internal exception on corrupted roaring bitmap offsets
taniabogatsch 54a0102
Use _unsigned_ hugeint for compressed materialization strings (#18128)
Mytherin 00bc79c
Fix for arrow.json production extension type
pdet ba5abdf
Allow .tsv as an accepted db file
pdet f017e44
Fixing CSV Fuzzer issues
pdet 899948b
Remove repeated tests
pdet f3ac1b9
Tests fixaroo
pdet e379cfb
format
pdet 59a35ee
Throw internal exception on corrupted roaring bitmap offsets (#18130)
Mytherin ca2b2c8
bump iceberg
Tishj 6fa2a8a
bump avro
Tishj dc5dc2b
Allow .tsv as an accepted db file (#18133)
Mytherin 4924731
Fixing CSV Fuzzer issues (#18134)
Mytherin 50c933f
Uncomment accidental commented tests
pdet 06cd84b
Remove irrelevant comment
carlopi 06d499c
Bump registry baseline
carlopi 107c5d0
Bump further avro & iceberg
carlopi 52a0cce
Add iceberg_to_ducklake to extension_entries.hpp
carlopi 108e091
Iceberg to 74f0b1d8f38
carlopi a9865a4
partially restore deprecated http logging settings
samansmink f99ebd0
internal exceptions
taniabogatsch e510378
bump iceberg
Tmonster 6b0be2c
update sqlsmith and aws as well
Tmonster 01bc4a7
Merge branch 'v1.3-ossivalis' into roaring
taniabogatsch 09659b1
revert iceberg bump
Tmonster ecb0e44
include fixes
taniabogatsch 0564560
fix whitespace
Tmonster 8dce900
exclude setting from test
samansmink 2afda3a
Bump iceberg for 1.3.2, from @Tishj, and bumping also httpfs (#18148)
Mytherin d985421
bump ducklake for v1.3.2.
c-herrewijn 9f56dbc
Internal #5245: AsOf NLJ Comparisons
hawkfish bc9bd8f
Internal #5245: AsOf NLJ Comparisons (#18159)
Mytherin 42f1667
Add internal exceptions to compression paths to prevent segmentation …
Mytherin a4595bc
Fix for arrow.json production extension type (#18132)
Mytherin b9b1e44
partially restore deprecated http logging settings (#18150)
Mytherin 7d473fc
bump spatial
Maxxen e27ccc2
add box2d type
Maxxen d1a4f37
bump again, remove && operator
Maxxen 2f84fd8
Bump for wasm fixes (excel and httpfs) and test fixes (iceberg)
carlopi 4d47531
Bump for wasm fixes (excel and httpfs) and test fixes (iceberg) (#18167)
Mytherin 8e92841
bump spatial (#18161)
Mytherin 266bc30
Bump spatial again: include re-linkinng for handling global objects i…
carlopi b889deb
Bump sqlsmith and aws (#18155)
Mytherin 7080681
re-generate extension_entries.hpp
c-herrewijn 1ea1ee9
formatting fix
c-herrewijn 0b83e5d
bump ducklake for v1.3.2. (#18156)
Mytherin 9592335
Bump spatial again: include re-linking for handling global objects in…
Mytherin 301114d
Merge remote-tracking branch 'origin/main' into merge-v1.3-ossivalis
carlopi 2f6929c
Fixup extension entries
carlopi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -391,10 +391,10 @@ jobs: | |
| ./scripts/upload-assets-to-staging.sh twine_upload tools/pythonpkg/wheelhouse/*.whl | ||
|
|
||
| linux-release-cleanup: | ||
| if: github.ref == 'refs/heads/v1.3-ossivalis' || github.ref == 'refs/heads/main' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, my PR does not have this change, should it be included?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes |
||
| name: PyPi Release Cleanup | ||
| needs: | ||
| - twine-upload | ||
| if: ${{ github.ref == 'refs/heads/v1.2-histrionicus' || github.ref == 'refs/heads/main' }} | ||
| runs-on: ubuntu-22.04 | ||
| env: | ||
| PYPI_CLEANUP_USERNAME: 'mytherin' | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| a,b,c | ||
| 1,1,1 | ||
| 1,1,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,\n,1 | ||
| 1,1000;"aa "" | ||
| ;a "" | ||
| 10"\n,1 | ||
| 1,\n,1 | ||
| 1,1,1 | ||
| 1,1,1 |
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we intentionally going to a different commit here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also marginal, expecially since it needs to be reworked/reviewed completely.
But the diff: duckdb/duckdb-excel@7e97933...cf00672 is not on the code side, so it's irrelevant.