We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6cad63 commit 26d2f40Copy full SHA for 26d2f40
1 file changed
.github/workflows/functional-tests.yml
@@ -182,9 +182,10 @@ jobs:
182
- name: Create test dataverse for scope-level queries
183
run: |
184
echo "Creating test dataverse testdb.testscope for scope-level functional tests"
185
- curl -sSf -k -u "${CBDINO_USER}:${CBDINO_PASS}" \
186
- "${CBDINO_CONNSTR}/api/v1/request" \
187
- --data-urlencode 'statement=CREATE DATAVERSE testdb.testscope IF NOT EXISTS;'
+ curl -sS -k -u "${CBDINO_USER}:${CBDINO_PASS}" \
+ -H "Content-Type: application/json" \
+ -d '{"statement": "CREATE DATAVERSE testdb.testscope IF NOT EXISTS;"}' \
188
+ "${CBDINO_CONNSTR}/api/v1/request"
189
echo ""
190
echo "Dataverse created successfully"
191
0 commit comments