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
| diff --git a/go/validation/pytest.ini b/go/validation/pytest.ini | |
| index 49b4b9d..becdba0 100644 | |
| --- a/go/validation/pytest.ini | |
| +++ b/go/validation/pytest.ini | |
| @@ -19,6 +19,7 @@ xfail_strict = true | |
| markers = | |
| feature: test for a driver-specific feature | |
| + requires_features: skip test if driver does not support the listed features | |
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
| macOS builder results | |
| Build system: r-release-macosx-arm64|4.6.0|macosx|macOS 26.2 (25C56)|Mac mini|Apple M1||en_US.UTF-8|macOS 14.4|clang-1700.6.3.2|GNU Fortran (GCC) 14.2.0 | |
| You can download a full tar ball results.tar.bz2 which contains the check results, tests, installed packages and binaries. A subset of the files are shown below. | |
| Build Log | |
| 00install.out | |
| Check Log | |
| * installing *source* package ‘arrow’ ... | |
| ** this is package ‘arrow’ version ‘24.0.0’ |
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
| use std::ffi::OsString; | |
| use std::os::windows::ffi::OsStringExt; | |
| extern "C" { | |
| fn _wgetenv_s( | |
| pReturnValue: *mut usize, | |
| buffer: *mut u16, | |
| numberOfElements: usize, | |
| varname: *const u16, | |
| ) -> i32; |
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
| $ cmake -S c -B build --preset debug -DADBC_BUILD_TESTS=ON -DADBC_USE_ASAN=ON | |
| $ cmake --build build | |
| $ ctest --test-dir build --output-on-failure |
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
| ------------------------------------- | |
| Translated Report (Full Report Below) | |
| ------------------------------------- | |
| Process: Python [30829] | |
| Path: /opt/homebrew/*/Python.framework/Versions/3.13/Resources/Python.app/Contents/MacOS/Python | |
| Identifier: org.python.python | |
| Version: 3.13.5 (3.13.5) | |
| Code Type: ARM-64 (Native) | |
| Parent Process: Exited process [11915] |
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
| Thread 6 (Thread 0x7f67d09ff6c0 (LWP 90982) "arrow-dataset-d"): | |
| #0 0x00007f67d4aa49ee in ?? () from /lib/x86_64-linux-gnu/libc.so.6 | |
| #1 0x00007f67d4a99668 in ?? () from /lib/x86_64-linux-gnu/libc.so.6 | |
| #2 0x00007f67d4a99c9c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 | |
| #3 0x00007f67d4a9c158 in pthread_cond_wait () from /lib/x86_64-linux-gnu/libc.so.6 | |
| #4 0x00007f67db5e45a6 in arrow::internal::WorkerLoop (state=std::shared_ptr<arrow::internal::ThreadPool::State> (use count 11, weak count 0) = {...}, it=...) at /home/bryce/src/apache/arrow/cpp/src/arrow/util/thread_pool.cc:501 | |
| #5 0x00007f67db5e6319 in operator() (__closure=0x504000003b58) at /home/bryce/src/apache/arrow/cpp/src/arrow/util/thread_pool.cc:645 | |
| #6 0x00007f67db5ec710 in std::__invoke_impl<void, arrow::internal::ThreadPool::LaunchWorkersUnlocked(int)::<lambda()> >(std::__invoke_other, struct {...} &&) (__f=...) at /usr/include/c++/14/bits/invoke.h:61 | |
| #7 0x00007f67db5ec6d3 in std::__invoke<arrow::internal::ThreadPool::LaunchWorkersUnlocked(int): |
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
| using ACE.DatLoader.FileTypes; | |
| using ACE.Entity.Enum; | |
| using SkiaSharp; | |
| List<int> GetImageColorArray(Texture texture) | |
| { | |
| List<int> colors = new List<int>(); | |
| if (texture.Length == 0) return colors; | |
| switch (texture.Format) |
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
| # How do two Substrait producers produce a plan for this relatively simple | |
| # query? | |
| # | |
| # SELECT * FROM penguins LIMIT 10; | |
| # | |
| # Let's see: | |
| import duckdb | |
| import json |
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
| { | |
| "relations": [ | |
| { | |
| "root": { | |
| "input": { | |
| "project": { | |
| "input": { | |
| "read": { | |
| "baseSchema": { | |
| "names": [ |
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
| ;; Initialize package system | |
| (require 'package) | |
| (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) | |
| (package-initialize) | |
| ;; Install required packages if not present | |
| (unless package-archive-contents | |
| (package-refresh-contents)) | |
| (setq package-selected-packages |
NewerOlder