Skip to content

Commit ea3a4f2

Browse files
committed
In progress Address kou's comments
- removed unneeded code - moved `mkdir -p "$HOME"/Library/ODBC`
1 parent 07b9ef4 commit ea3a4f2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

compose.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,6 @@ services:
515515
shm_size: *shm-size
516516
cap_add:
517517
- SYS_ADMIN
518-
devices:
519-
- "/dev/fuse:/dev/fuse"
520518
security_opt:
521519
- apparmor:unconfined
522520
ulimits: *ulimits

cpp/src/arrow/flight/sql/odbc/install/unix/install_odbc.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,12 @@ case "$(uname)" in
4747
*)
4848
# macOS
4949
USER_ODBCINST_FILE="$HOME/Library/ODBC/odbcinst.ini"
50+
mkdir -p "$HOME"/Library/ODBC
5051
;;
5152
esac
5253

5354
DRIVER_NAME="Apache Arrow Flight SQL ODBC Driver"
5455

55-
mkdir -p "$HOME"/Library/ODBC
56-
5756
touch "$USER_ODBCINST_FILE"
5857

5958
if grep -q "^\[$DRIVER_NAME\]" "$USER_ODBCINST_FILE"; then

0 commit comments

Comments
 (0)