Skip to content

Commit a6e1e9c

Browse files
committed
Adding pipeline for flyway
1 parent 0c63dd9 commit a6e1e9c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.azure_templates/t-task-extend-flyway.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ steps:
2424
inputs:
2525
containerRegistry: ${{ parameters.containerRegistry }}
2626
command: 'login'
27-
27+
2828
- bash: |
2929
# Relates to : https://community.oracle.com/tech/developers/discussion/4490418/sqlcl-production-build-21-3-0-278-1045-throwing-warning-terminal-cannot-be-created-paused
3030
export JAVA_TOOL_OPTIONS=-Dorg.jline.terminal.dumb=true
3131
#Issue with 19.3 docker images. fixed in 21
3232
sql ${{ parameters.user }}/${{ parameters.password }}@//127.0.0.1:1521/ORCLCDB?oracle.net.disableOob=true<<EOF
33-
show pdbs;
33+
34+
SELECT CDB FROM V$DATABASE;
35+
SELECT NAME, CON_ID, DBID, CON_UID, GUID FROM V$CONTAINERS ORDER BY CON_ID;
3436
exit;
3537
EOF
3638
exit $?

0 commit comments

Comments
 (0)