Skip to content

Instantly share code, notes, and snippets.

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
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’
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;
$ 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
@amoeba
amoeba / crash.log
Created July 14, 2025 15:19
Flight crash
-------------------------------------
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]
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):
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)
# 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
{
"relations": [
{
"root": {
"input": {
"project": {
"input": {
"read": {
"baseSchema": {
"names": [
@amoeba
amoeba / init.el
Last active January 17, 2025 02:44
Emacs C++, clangd, lsp-mode config
;; 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