Skip to content

Commit f8634ce

Browse files
authored
fix(proto): split Arrow Flight SQL protos (#14)
There was a mix between the Arrow Flight and Arrow Flight SQL package
1 parent 2e8e6eb commit f8634ce

13 files changed

Lines changed: 3152 additions & 212 deletions

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,17 @@ pip install -e ".[dev]"
140140
pytest tests/
141141
```
142142

143-
The mock service container is forced to run as `linux/amd64` to keep parity with CI
144-
and to work reliably on Apple Silicon machines (Docker Desktop will handle
145-
emulation automatically).
143+
By default the mock service container is launched using the host's native
144+
architecture (`linux/arm64` on Apple Silicon, `linux/amd64` on Intel/Linux), so
145+
no emulation is required. To override the platform — for example to force
146+
`linux/amd64` for parity with CI — set `ALTERTABLE_MOCK_PLATFORM`:
147+
148+
```bash
149+
ALTERTABLE_MOCK_PLATFORM=linux/amd64 pytest tests/
150+
```
151+
152+
Set `ALTERTABLE_MOCK_PLATFORM=` (empty) to let Docker pick the default from the
153+
image manifest.
146154

147155
**Using an existing service (CI/production):**
148156

0 commit comments

Comments
 (0)