We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78bea3a commit 9b8786aCopy full SHA for 9b8786a
.github/workflows/sql-test.yml
@@ -53,7 +53,7 @@ jobs:
53
run: |
54
set -e
55
# existiert die Tabelle?
56
- exists=$(mysql -h 127.0.0.1 -P 3306 -uroot -p"${{ secrets.MYSQL_ROOT_PASSWORD }}" -N -e "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema='testdb' AND table_name='vorlesung';")
+ exists=$(mysql -h 127.0.0.1 -P 3306 -uroot -p"${{ secrets.MYSQL_ROOT_PASSWORD }}" -N -e "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema='testdb' AND table_name='Vorlesung';")
57
if [ "$exists" -eq 0 ]; then
58
echo "❌ Tabelle 'vorlesung' existiert nicht in Schema 'testdb'."
59
exit 1
0 commit comments