Former-commit-id:4f112968dd
[formerly0ac8d01147
] [formerly660ca8fcec
] [formerly4f112968dd
[formerly0ac8d01147
] [formerly660ca8fcec
] [formerlybac07c65a1
[formerly660ca8fcec
[formerly 41ead90acf0d06e959e513e5a25869eb6e18150a]]]] Former-commit-id:bac07c65a1
Former-commit-id:a1b0b399a9
[formerly7c11dea797
] [formerly bede60a174f734fd8be3cff1da228268a9551c43 [formerlyec3e8b6411
]] Former-commit-id: 116850bed663cea0cef9ee792538f13f2a182c5b [formerly7c145f4fe9
] Former-commit-id:dc5522e6ab
23 lines
542 B
Bash
23 lines
542 B
Bash
#!/bin/bash
|
|
|
|
SQL_SCRIPT="changeDataTypeEnumToUppercase.sql"
|
|
|
|
# ensure that the sql script is present
|
|
if [ ! -f ${SQL_SCRIPT} ]; then
|
|
echo "ERROR: the required sql script - ${SQL_SCRIPT} was not found."
|
|
echo "FATAL: the update has failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: update started - changing DataType to an Uppercase enum"
|
|
|
|
# run the update
|
|
/awips2/psql/bin/psql -U awips -d metadata -f ${SQL_SCRIPT}
|
|
if [ $? -ne 0 ]; then
|
|
echo "FATAL: the update has failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: the update has completed successfully!"
|
|
|
|
exit 0
|