This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 46368e069 chore: wrap .env values in quotes to prevent parsing errors
(#1779)
46368e069 is described below
commit 46368e0696d1704d0c6d3c80f95daad002d92589
Author: Hyunseok Seo <[email protected]>
AuthorDate: Mon Apr 29 09:18:29 2024 +0900
chore: wrap .env values in quotes to prevent parsing errors (#1779)
Enclose URL variables in `.env` with quotes to fix parsing errors caused
by special characters like `&`.
Resolve #1778
---
.env | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.env b/.env
index d598c2f09..ff1a0e5fd 100644
--- a/.env
+++ b/.env
@@ -54,6 +54,6 @@ ADBC_JDBC_POSTGRESQL_URL=localhost:5432/postgres
ADBC_JDBC_POSTGRESQL_USER=postgres
ADBC_JDBC_POSTGRESQL_PASSWORD=password
ADBC_JDBC_POSTGRESQL_DATABASE=postgres
-ADBC_POSTGRESQL_TEST_URI=postgresql://localhost:5432/postgres?user=postgres&password=password
+ADBC_POSTGRESQL_TEST_URI="postgresql://localhost:5432/postgres?user=postgres&password=password"
ADBC_SQLITE_FLIGHTSQL_URI=grpc+tcp://localhost:8080
ADBC_TEST_FLIGHTSQL_URI=grpc+tcp://localhost:41414