polars-df 0.21.1-x64-mingw-ucrt → 0.22.0-x64-mingw-ucrt

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 950675a4e03f1ebc9b408f107aada47d4160b616429adc13fa364ec7a1adb91b
4
- data.tar.gz: '082cf2a2ade8ae92b843d08390b57ff855902a24cb5887de14bdad9ec5a4e4eb'
3
+ metadata.gz: 718f30dd63c621266f7d60844c4254bfc1d895cbdba1e06db9888b2d59820e6c
4
+ data.tar.gz: 24283b814e86ee771a62b9761b9fc1a755de82a29370de98629cd36b35bb1008
5
5
  SHA512:
6
- metadata.gz: e6c668e60ab1bf492349d7ad4d07eae5880f3478b9669217c5f3ca92c167ff99042d856f8ece8be9ccb9552f9b494157e737dcfc5b8cfa133afa12e6c1cff379
7
- data.tar.gz: 047fa232b754597a773ff10cfd03131272bd775fb6d8ae1984cd6c19a003939f98b928292e825f40ccf9a995e2c744f3ef5716c7355cf718c1b971aaa5810f1a
6
+ metadata.gz: f438f520735ac4785d941a708131ef2a1bca8c8312d92ade45e8380cbc1fba1b43e3c9fe8912cab9596ac4b1f5fe59f9942978ce96b992a5e09f52361d5a646d
7
+ data.tar.gz: a5cecfeb1d775d6c71e51cb7d541dc6eab9184fac07cd9c22ad2177198a5bee3de85f3a60cdc3dbf5402c86b154cb079c4228d18738f368bcb4f044be341acea
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.22.0 (2025-09-17)
2
+
3
+ - Updated Polars to 0.51.0
4
+ - Added `serialize` and `deserialize` methods to `DataFrame`
5
+ - Added `storage_options` and `retries` options to `sink_ipc` method
6
+ - Added `business_day_count` method to `Polars`
7
+ - Added experimental support for Iceberg
8
+ - Added experimental `cast_options` option to `scan_parquet` method
9
+ - Changed `read_parquet_schema` method to return `Schema`
10
+ - Fixed `Object` type
11
+
1
12
  ## 0.21.1 (2025-08-18)
2
13
 
3
14
  - Added `read_parquet_metadata` method to `Polars`
data/Cargo.lock CHANGED
@@ -1391,8 +1391,9 @@ dependencies = [
1391
1391
 
1392
1392
  [[package]]
1393
1393
  name = "magnus"
1394
- version = "0.7.1"
1395
- source = "git+https://github.com/matsadler/magnus.git?rev=4125ee2ab5a405d17aa6d7503961c1ecdbe499ef#4125ee2ab5a405d17aa6d7503961c1ecdbe499ef"
1394
+ version = "0.8.1"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "bd2ac6e71886be00ac34db92aa732c793c5107c95191805b9a1c7e70e6d342e0"
1396
1397
  dependencies = [
1397
1398
  "chrono",
1398
1399
  "magnus-macros",
@@ -1403,8 +1404,9 @@ dependencies = [
1403
1404
 
1404
1405
  [[package]]
1405
1406
  name = "magnus-macros"
1406
- version = "0.6.0"
1407
- source = "git+https://github.com/matsadler/magnus.git?rev=4125ee2ab5a405d17aa6d7503961c1ecdbe499ef#4125ee2ab5a405d17aa6d7503961c1ecdbe499ef"
1407
+ version = "0.8.0"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1408
1410
  dependencies = [
1409
1411
  "proc-macro2",
1410
1412
  "quote",
@@ -1654,7 +1656,7 @@ dependencies = [
1654
1656
 
1655
1657
  [[package]]
1656
1658
  name = "polars"
1657
- version = "0.21.1"
1659
+ version = "0.22.0"
1658
1660
  dependencies = [
1659
1661
  "ahash",
1660
1662
  "bytes",
@@ -1664,10 +1666,11 @@ dependencies = [
1664
1666
  "magnus",
1665
1667
  "mimalloc",
1666
1668
  "num-traits",
1667
- "polars 0.50.0",
1669
+ "polars 0.51.0",
1668
1670
  "polars-arrow",
1669
1671
  "polars-core",
1670
1672
  "polars-dtype",
1673
+ "polars-error",
1671
1674
  "polars-io",
1672
1675
  "polars-lazy",
1673
1676
  "polars-parquet",
@@ -1680,9 +1683,9 @@ dependencies = [
1680
1683
 
1681
1684
  [[package]]
1682
1685
  name = "polars"
1683
- version = "0.50.0"
1686
+ version = "0.51.0"
1684
1687
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "fde57577c2b4b823d85617c2c95c11fcdc649e68467030e321e573800524946c"
1688
+ checksum = "a5f7feb5d56b954e691dff22a8b2d78d77433dcc93c35fe21c3777fdc121b697"
1686
1689
  dependencies = [
1687
1690
  "getrandom 0.2.16",
1688
1691
  "getrandom 0.3.3",
@@ -1702,9 +1705,9 @@ dependencies = [
1702
1705
 
1703
1706
  [[package]]
1704
1707
  name = "polars-arrow"
1705
- version = "0.50.0"
1708
+ version = "0.51.0"
1706
1709
  source = "registry+https://github.com/rust-lang/crates.io-index"
1707
- checksum = "29f705dc037eb0a4213554a19320f13c02095c63bdd5e9e7f960817fa29b7b8d"
1710
+ checksum = "32b4fed2343961b3eea3db2cee165540c3e1ad9d5782350cc55a9e76cf440148"
1708
1711
  dependencies = [
1709
1712
  "atoi_simd",
1710
1713
  "avro-schema",
@@ -1745,9 +1748,9 @@ dependencies = [
1745
1748
 
1746
1749
  [[package]]
1747
1750
  name = "polars-compute"
1748
- version = "0.50.0"
1751
+ version = "0.51.0"
1749
1752
  source = "registry+https://github.com/rust-lang/crates.io-index"
1750
- checksum = "896f4efdf1292121df34d6214fd32e634ce9aa5f3739519b3ccd9c11bda75d2a"
1753
+ checksum = "138785beda4e4a90a025219f09d0d15a671b2be9091513ede58e05db6ad4413f"
1751
1754
  dependencies = [
1752
1755
  "atoi_simd",
1753
1756
  "bytemuck",
@@ -1771,9 +1774,9 @@ dependencies = [
1771
1774
 
1772
1775
  [[package]]
1773
1776
  name = "polars-core"
1774
- version = "0.50.0"
1777
+ version = "0.51.0"
1775
1778
  source = "registry+https://github.com/rust-lang/crates.io-index"
1776
- checksum = "11e2c54762ac17a039552033d81779b58619b832aa4f36ebc3395f9aa8bce083"
1779
+ checksum = "e77b1f08ef6dbb032bb1d0d3365464be950df9905f6827a95b24c4ca5518901d"
1777
1780
  dependencies = [
1778
1781
  "bitflags",
1779
1782
  "boxcar",
@@ -1807,9 +1810,9 @@ dependencies = [
1807
1810
 
1808
1811
  [[package]]
1809
1812
  name = "polars-dtype"
1810
- version = "0.50.0"
1813
+ version = "0.51.0"
1811
1814
  source = "registry+https://github.com/rust-lang/crates.io-index"
1812
- checksum = "6bdc47854d72f3df098a06b984de4105ca5030123445d3edef27502e6034019a"
1815
+ checksum = "89c43d0ea57168be4546c4d8064479ed8b29a9c79c31a0c7c367ee734b9b7158"
1813
1816
  dependencies = [
1814
1817
  "boxcar",
1815
1818
  "hashbrown",
@@ -1822,9 +1825,9 @@ dependencies = [
1822
1825
 
1823
1826
  [[package]]
1824
1827
  name = "polars-error"
1825
- version = "0.50.0"
1828
+ version = "0.51.0"
1826
1829
  source = "registry+https://github.com/rust-lang/crates.io-index"
1827
- checksum = "24d0fe86ef36dfa5c9e0b9833effd2e42cd64054b862fe40a243a635ecf62771"
1830
+ checksum = "b9cb5d98f59f8b94673ee391840440ad9f0d2170afced95fc98aa86f895563c0"
1828
1831
  dependencies = [
1829
1832
  "avro-schema",
1830
1833
  "object_store",
@@ -1837,9 +1840,9 @@ dependencies = [
1837
1840
 
1838
1841
  [[package]]
1839
1842
  name = "polars-expr"
1840
- version = "0.50.0"
1843
+ version = "0.51.0"
1841
1844
  source = "registry+https://github.com/rust-lang/crates.io-index"
1842
- checksum = "98212e4899b5432f2b89f2f33c665240f8882cf757e7a5d18cf7b03ba80cdc1e"
1845
+ checksum = "343931b818cf136349135ba11dbc18c27683b52c3477b1ba8ca606cf5ab1965c"
1843
1846
  dependencies = [
1844
1847
  "bitflags",
1845
1848
  "hashbrown",
@@ -1860,9 +1863,9 @@ dependencies = [
1860
1863
 
1861
1864
  [[package]]
1862
1865
  name = "polars-io"
1863
- version = "0.50.0"
1866
+ version = "0.51.0"
1864
1867
  source = "registry+https://github.com/rust-lang/crates.io-index"
1865
- checksum = "cba1a01ed61ec1ba3f3f7d1a7c4ad61cb7ece4bfd606d5d52bfa1384ce707109"
1868
+ checksum = "10388c64b8155122488229a881d1c6f4fdc393bc988e764ab51b182fcb2307e4"
1866
1869
  dependencies = [
1867
1870
  "async-trait",
1868
1871
  "atoi_simd",
@@ -1909,9 +1912,9 @@ dependencies = [
1909
1912
 
1910
1913
  [[package]]
1911
1914
  name = "polars-json"
1912
- version = "0.50.0"
1915
+ version = "0.51.0"
1913
1916
  source = "registry+https://github.com/rust-lang/crates.io-index"
1914
- checksum = "9d546be779c0f2e87870538deb87ca6d90910ba09cb867409c87ed5c13518b5d"
1917
+ checksum = "b26d1a04292a82183c8eba94fdf1584f200bfac5ac2f4a6c5652c8c8ed3bb41c"
1915
1918
  dependencies = [
1916
1919
  "chrono",
1917
1920
  "chrono-tz",
@@ -1931,9 +1934,9 @@ dependencies = [
1931
1934
 
1932
1935
  [[package]]
1933
1936
  name = "polars-lazy"
1934
- version = "0.50.0"
1937
+ version = "0.51.0"
1935
1938
  source = "registry+https://github.com/rust-lang/crates.io-index"
1936
- checksum = "1aa4dbd41c7508735c3e8c2607aef39679d89298b53f1462710fc3f95b6c5cbd"
1939
+ checksum = "0fb6e2c6c2fa4ea0c660df1c06cf56960c81e7c2683877995bae3d4e3d408147"
1937
1940
  dependencies = [
1938
1941
  "bitflags",
1939
1942
  "chrono",
@@ -1959,9 +1962,9 @@ dependencies = [
1959
1962
 
1960
1963
  [[package]]
1961
1964
  name = "polars-mem-engine"
1962
- version = "0.50.0"
1965
+ version = "0.51.0"
1963
1966
  source = "registry+https://github.com/rust-lang/crates.io-index"
1964
- checksum = "712491f22624672d1c97a0f1faca93645ce749aa497c04dd67914738872474e1"
1967
+ checksum = "20a856e98e253587c28d8132a5e7e5a75cb2c44731ca090f1481d45f1d123771"
1965
1968
  dependencies = [
1966
1969
  "futures",
1967
1970
  "memmap2",
@@ -1982,9 +1985,9 @@ dependencies = [
1982
1985
 
1983
1986
  [[package]]
1984
1987
  name = "polars-ops"
1985
- version = "0.50.0"
1988
+ version = "0.51.0"
1986
1989
  source = "registry+https://github.com/rust-lang/crates.io-index"
1987
- checksum = "7c433eb8eb4d5767504a6a145df286e503307d773dc92a085b9cabc6eaaafb01"
1990
+ checksum = "acf6062173fdc9ba05775548beb66e76643a148d9aeadc9984ed712bc4babd76"
1988
1991
  dependencies = [
1989
1992
  "aho-corasick",
1990
1993
  "argminmax",
@@ -2022,9 +2025,9 @@ dependencies = [
2022
2025
 
2023
2026
  [[package]]
2024
2027
  name = "polars-parquet"
2025
- version = "0.50.0"
2028
+ version = "0.51.0"
2026
2029
  source = "registry+https://github.com/rust-lang/crates.io-index"
2027
- checksum = "6efe8ffb9207c3d50d47ee9b5ee750beb889e7cffd2b61291766c74a020ee51d"
2030
+ checksum = "cc1d769180dec070df0dc4b89299b364bf2cfe32b218ecc4ddd8f1a49ae60669"
2028
2031
  dependencies = [
2029
2032
  "async-stream",
2030
2033
  "base64",
@@ -2060,9 +2063,9 @@ dependencies = [
2060
2063
 
2061
2064
  [[package]]
2062
2065
  name = "polars-plan"
2063
- version = "0.50.0"
2066
+ version = "0.51.0"
2064
2067
  source = "registry+https://github.com/rust-lang/crates.io-index"
2065
- checksum = "2219ff36b304d0543185773cf182c49eca4f558403fb33c464b7688cd4f178d2"
2068
+ checksum = "1cd3a2e33ae4484fe407ab2d2ba5684f0889d1ccf3ad6b844103c03638e6d0a0"
2066
2069
  dependencies = [
2067
2070
  "bitflags",
2068
2071
  "bytemuck",
@@ -2096,9 +2099,9 @@ dependencies = [
2096
2099
 
2097
2100
  [[package]]
2098
2101
  name = "polars-row"
2099
- version = "0.50.0"
2102
+ version = "0.51.0"
2100
2103
  source = "registry+https://github.com/rust-lang/crates.io-index"
2101
- checksum = "1eb03bbe6518a9a50fbe2f0d587f6634cf33f1e485657ef3db2bfab997fbc7a4"
2104
+ checksum = "18734f17e0e348724df3ae65f3ee744c681117c04b041cac969dfceb05edabc0"
2102
2105
  dependencies = [
2103
2106
  "bitflags",
2104
2107
  "bytemuck",
@@ -2111,9 +2114,9 @@ dependencies = [
2111
2114
 
2112
2115
  [[package]]
2113
2116
  name = "polars-schema"
2114
- version = "0.50.0"
2117
+ version = "0.51.0"
2115
2118
  source = "registry+https://github.com/rust-lang/crates.io-index"
2116
- checksum = "4b2daa5d628c4aa56deed967cc64fd24c9f62a919c8aaaf2b77b1457f8684f98"
2119
+ checksum = "8e6c1ab13e04d5167661a9854ed1ea0482b2ed9b8a0f1118dabed7cd994a85e3"
2117
2120
  dependencies = [
2118
2121
  "indexmap",
2119
2122
  "polars-error",
@@ -2124,9 +2127,9 @@ dependencies = [
2124
2127
 
2125
2128
  [[package]]
2126
2129
  name = "polars-sql"
2127
- version = "0.50.0"
2130
+ version = "0.51.0"
2128
2131
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
- checksum = "f9021d46eb864c2bd944a51676c24c17eaa9e5fe755be464a50827179e6dcb8d"
2132
+ checksum = "c4e7766da02cc1d464994404d3e88a7a0ccd4933df3627c325480fbd9bbc0a11"
2130
2133
  dependencies = [
2131
2134
  "bitflags",
2132
2135
  "hex",
@@ -2145,9 +2148,9 @@ dependencies = [
2145
2148
 
2146
2149
  [[package]]
2147
2150
  name = "polars-stream"
2148
- version = "0.50.0"
2151
+ version = "0.51.0"
2149
2152
  source = "registry+https://github.com/rust-lang/crates.io-index"
2150
- checksum = "22323af55f0f2f9f9d64d65a5b0277b8dfa45300e4f6ba8d96e30817059c433e"
2153
+ checksum = "31f6c6ca1ea01f9dea424d167e4f33f5ec44cd67fbfac9efd40575ed20521f14"
2151
2154
  dependencies = [
2152
2155
  "async-channel",
2153
2156
  "async-trait",
@@ -2177,14 +2180,15 @@ dependencies = [
2177
2180
  "recursive",
2178
2181
  "slotmap",
2179
2182
  "tokio",
2183
+ "tokio-util",
2180
2184
  "version_check",
2181
2185
  ]
2182
2186
 
2183
2187
  [[package]]
2184
2188
  name = "polars-time"
2185
- version = "0.50.0"
2189
+ version = "0.51.0"
2186
2190
  source = "registry+https://github.com/rust-lang/crates.io-index"
2187
- checksum = "954b926cf121787c9fd2cf274b66ed85be46ab425405d0c5a1830c885c78b259"
2191
+ checksum = "f6a3a6e279a7a984a0b83715660f9e880590c6129ec2104396bfa710bcd76dee"
2188
2192
  dependencies = [
2189
2193
  "atoi_simd",
2190
2194
  "bytemuck",
@@ -2206,14 +2210,15 @@ dependencies = [
2206
2210
 
2207
2211
  [[package]]
2208
2212
  name = "polars-utils"
2209
- version = "0.50.0"
2213
+ version = "0.51.0"
2210
2214
  source = "registry+https://github.com/rust-lang/crates.io-index"
2211
- checksum = "846a868e172550e4a3a465d7cdddee06377ccd0ea863cd49afd6f903078e0cff"
2215
+ checksum = "57b267021b0e5422d7fbc70fd79e51b9f9a8466c585779373a18b0199e973f29"
2212
2216
  dependencies = [
2213
2217
  "bincode",
2214
2218
  "bytemuck",
2215
2219
  "bytes",
2216
2220
  "compact_str",
2221
+ "either",
2217
2222
  "flate2",
2218
2223
  "foldhash",
2219
2224
  "hashbrown",
@@ -2446,9 +2451,9 @@ dependencies = [
2446
2451
 
2447
2452
  [[package]]
2448
2453
  name = "rb-sys-env"
2449
- version = "0.1.2"
2454
+ version = "0.2.2"
2450
2455
  source = "registry+https://github.com/rust-lang/crates.io-index"
2451
- checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2456
+ checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
2452
2457
 
2453
2458
  [[package]]
2454
2459
  name = "recursive"
@@ -3158,6 +3163,8 @@ dependencies = [
3158
3163
  "bytes",
3159
3164
  "futures-core",
3160
3165
  "futures-sink",
3166
+ "futures-util",
3167
+ "hashbrown",
3161
3168
  "pin-project-lite",
3162
3169
  "tokio",
3163
3170
  ]
data/Cargo.toml CHANGED
@@ -4,3 +4,6 @@ resolver = "2"
4
4
 
5
5
  [profile.release]
6
6
  strip = true
7
+
8
+ [profile.dev]
9
+ strip = true
@@ -522,11 +522,11 @@ lz4-sys v1.11.1+lz4-1.10.0
522
522
  https://github.com/10xGenomics/lz4-rs
523
523
  MIT
524
524
 
525
- magnus v0.7.1
525
+ magnus v0.8.1
526
526
  https://github.com/matsadler/magnus
527
527
  MIT
528
528
 
529
- magnus-macros v0.6.0
529
+ magnus-macros v0.8.0
530
530
  https://github.com/matsadler/magnus
531
531
  MIT
532
532
 
@@ -622,11 +622,11 @@ planus v1.1.1
622
622
  https://github.com/planus-org/planus
623
623
  MIT/Apache-2.0
624
624
 
625
- polars v0.50.0
625
+ polars v0.51.0
626
626
  https://www.pola.rs/
627
627
  MIT
628
628
 
629
- polars-arrow v0.50.0
629
+ polars-arrow v0.51.0
630
630
  https://www.pola.rs/
631
631
  MIT AND Apache-2.0
632
632
 
@@ -634,47 +634,47 @@ polars-arrow-format v0.2.0
634
634
  https://github.com/DataEngineeringLabs/arrow-format
635
635
  Apache-2.0
636
636
 
637
- polars-compute v0.50.0
637
+ polars-compute v0.51.0
638
638
  https://www.pola.rs/
639
639
  MIT
640
640
 
641
- polars-core v0.50.0
641
+ polars-core v0.51.0
642
642
  https://www.pola.rs/
643
643
  MIT
644
644
 
645
- polars-dtype v0.50.0
645
+ polars-dtype v0.51.0
646
646
  https://www.pola.rs/
647
647
  MIT
648
648
 
649
- polars-error v0.50.0
649
+ polars-error v0.51.0
650
650
  https://www.pola.rs/
651
651
  MIT
652
652
 
653
- polars-expr v0.50.0
653
+ polars-expr v0.51.0
654
654
  https://www.pola.rs/
655
655
  MIT
656
656
 
657
- polars-io v0.50.0
657
+ polars-io v0.51.0
658
658
  https://www.pola.rs/
659
659
  MIT
660
660
 
661
- polars-json v0.50.0
661
+ polars-json v0.51.0
662
662
  https://www.pola.rs/
663
663
  MIT
664
664
 
665
- polars-lazy v0.50.0
665
+ polars-lazy v0.51.0
666
666
  https://www.pola.rs/
667
667
  MIT
668
668
 
669
- polars-mem-engine v0.50.0
669
+ polars-mem-engine v0.51.0
670
670
  https://www.pola.rs/
671
671
  MIT
672
672
 
673
- polars-ops v0.50.0
673
+ polars-ops v0.51.0
674
674
  https://www.pola.rs/
675
675
  MIT
676
676
 
677
- polars-parquet v0.50.0
677
+ polars-parquet v0.51.0
678
678
  https://www.pola.rs/
679
679
  MIT AND Apache-2.0
680
680
 
@@ -682,31 +682,31 @@ polars-parquet-format v0.1.0
682
682
  https://github.com/pola-rs/parquet-format
683
683
  MIT AND Apache-2.0
684
684
 
685
- polars-plan v0.50.0
685
+ polars-plan v0.51.0
686
686
  https://www.pola.rs/
687
687
  MIT
688
688
 
689
- polars-row v0.50.0
689
+ polars-row v0.51.0
690
690
  https://www.pola.rs/
691
691
  MIT
692
692
 
693
- polars-schema v0.50.0
693
+ polars-schema v0.51.0
694
694
  https://www.pola.rs/
695
695
  MIT
696
696
 
697
- polars-sql v0.50.0
697
+ polars-sql v0.51.0
698
698
  https://www.pola.rs/
699
699
  MIT
700
700
 
701
- polars-stream v0.50.0
701
+ polars-stream v0.51.0
702
702
  https://www.pola.rs/
703
703
  MIT
704
704
 
705
- polars-time v0.50.0
705
+ polars-time v0.51.0
706
706
  https://www.pola.rs/
707
707
  MIT
708
708
 
709
- polars-utils v0.50.0
709
+ polars-utils v0.51.0
710
710
  https://www.pola.rs/
711
711
  MIT
712
712
 
@@ -782,7 +782,7 @@ rb-sys-build v0.9.117
782
782
  https://github.com/oxidize-rb/rb-sys
783
783
  MIT OR Apache-2.0
784
784
 
785
- rb-sys-env v0.1.2
785
+ rb-sys-env v0.2.2
786
786
  https://github.com/oxidize-rb/rb-sys
787
787
  MIT OR Apache-2.0
788
788
 
@@ -23842,32 +23842,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23842
23842
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23843
23843
  SOFTWARE.
23844
23844
 
23845
- ================================================================================
23846
- magnus magnus-macros/LICENSE
23847
- ================================================================================
23848
-
23849
- MIT License
23850
-
23851
- Copyright (c) 2023, 2022, 2021 Matthew Sadler
23852
-
23853
- Permission is hereby granted, free of charge, to any person obtaining a copy
23854
- of this software and associated documentation files (the "Software"), to deal
23855
- in the Software without restriction, including without limitation the rights
23856
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
23857
- copies of the Software, and to permit persons to whom the Software is
23858
- furnished to do so, subject to the following conditions:
23859
-
23860
- The above copyright notice and this permission notice shall be included in all
23861
- copies or substantial portions of the Software.
23862
-
23863
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23864
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23865
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23866
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23867
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23868
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23869
- SOFTWARE.
23870
-
23871
23845
  ================================================================================
23872
23846
  magnus-macros LICENSE
23873
23847
  ================================================================================
data/README.md CHANGED
@@ -88,6 +88,12 @@ From Avro
88
88
  Polars.read_avro("file.avro")
89
89
  ```
90
90
 
91
+ From Iceberg (requires [iceberg](https://github.com/ankane/iceberg-ruby)) [experimental]
92
+
93
+ ```ruby
94
+ Polars.scan_iceberg(table)
95
+ ```
96
+
91
97
  From Delta Lake (requires [deltalake-rb](https://github.com/ankane/delta-ruby)) [experimental]
92
98
 
93
99
  ```ruby
@@ -365,6 +371,12 @@ Avro
365
371
  df.write_avro("file.avro")
366
372
  ```
367
373
 
374
+ Iceberg [experimental]
375
+
376
+ ```ruby
377
+ df.write_iceberg(table, mode: "append")
378
+ ```
379
+
368
380
  Delta Lake [experimental]
369
381
 
370
382
  ```ruby
Binary file
Binary file
Binary file
@@ -38,7 +38,7 @@ module Polars
38
38
  # @param offset [Integer]
39
39
  # Start index. Negative indexing is supported.
40
40
  # @param length [Integer]
41
- # Length of the slice. If set to `None` (default), the slice is taken to the
41
+ # Length of the slice. If set to `nil` (default), the slice is taken to the
42
42
  # end of the list.
43
43
  # @param as_array [Boolean]
44
44
  # Return result as a fixed-length `Array`, otherwise as a `List`.