Skip to content

Commit 72b0000

Browse files
committed
Fix a few bugs
1 parent 0357946 commit 72b0000

File tree

7 files changed

+5
-293
lines changed

7 files changed

+5
-293
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install System Dependencies
4242
run: |
4343
sudo apt-get update
44-
sudo apt-get install -y gcc curl pkg-config libssl-dev make
44+
sudo apt-get install -y gcc curl pkg-config libssl-dev make liblzma-dev
4545
cargo install cargo-tarpaulin --locked || true
4646
4747
- name: Run Rust Tests
@@ -73,7 +73,7 @@ jobs:
7373
- name: Install System Dependencies
7474
run: |
7575
sudo apt-get update
76-
sudo apt-get install -y gcc curl pkg-config libssl-dev make
76+
sudo apt-get install -y gcc curl pkg-config libssl-dev make liblzma-dev
7777
7878
- name: Build Extension & Run SQL Tests
7979
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ debug: rust-build-debug ## Build the extension in debug mode (DuckDB + extension
113113
.PHONY: install-deps
114114
install-deps: ## Set up development environment (for Debian-based systems)
115115
@echo "Setting up development environment..."
116-
@sudo apt-get install -y cmake clang-format snap python3-pip
116+
@sudo apt-get install -y cmake clang-format snap python3-pip liblzma-dev
117117
@sudo snap install rustup --classic
118118
@cargo install cargo-tarpaulin cbindgen cargo-edit cargo-audit cargo-outdated cargo-careful
119119
@cd gaggle && cargo check --features "tract"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[![Docs](https://img.shields.io/badge/docs-read-blue?style=flat&labelColor=282c34&logo=read-the-docs)](https://github.com/CogitatorTech/gaggle/tree/main/docs)
1313
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-007ec6?style=flat&labelColor=282c34&logo=open-source-initiative)](https://github.com/CogitatorTech/gaggle)
1414

15-
Access and Query Kaggle Datasets from DuckDB
15+
Access and query Kaggle datasets from DuckDB
1616

1717
</div>
1818

docs/BUGFIXES.md

Lines changed: 0 additions & 127 deletions
This file was deleted.

gaggle/tests/test_regression.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
use gaggle::{gaggle_clear_last_error, gaggle_last_error};
55
use gaggle::{gaggle_download_dataset, gaggle_free, gaggle_set_credentials};
66
use std::ffi::{CStr, CString};
7-
use std::fs;
8-
use std::io::Write;
97
use std::sync::{Arc, Barrier};
108
use std::thread;
119

test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Testing Gaggle Extension
22

33
This directory contains a collection of mainly Sqllogictest-style tests for the Gaggle DuckDB extension.
4-
These tests are different than other tests like Rust tests in [gaggle](../gaggle/src).
4+
These tests are different than other tests like Rust tests for the [gaggle](../gaggle) crate.
55

66
### Prerequisites
77

test/sql/README.md

Lines changed: 0 additions & 159 deletions
This file was deleted.

0 commit comments

Comments
 (0)