File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ jobs:
5959 exit 1
6060 fi
6161 # Anzahl Zeilen
62- rows=$(mysql -h 127.0.0.1 -P 3306 -uroot -p"${{ secrets.MYSQL_ROOT_PASSWORD }}" -N -e "USE testdb; SELECT COUNT(*) FROM vorlesung ;")
62+ rows=$(mysql -h 127.0.0.1 -P 3306 -uroot -p"${{ secrets.MYSQL_ROOT_PASSWORD }}" -N -e "USE testdb; SELECT COUNT(*) FROM Vorlesung ;")
6363 echo "vorlesung rows: $rows"
6464 if [ "$rows" -eq 0 ]; then
6565 echo "❌ Tabelle 'vorlesung' ist leer."
6666 exit 1
6767 fi
6868 # ein paar Datensätze zeigen
69- mysql -h 127.0.0.1 -P 3306 -uroot -p"${{ secrets.MYSQL_ROOT_PASSWORD }}" -e "USE testdb; SELECT * FROM vorlesung ORDER BY 1 LIMIT 10;"
69+ mysql -h 127.0.0.1 -P 3306 -uroot -p"${{ secrets.MYSQL_ROOT_PASSWORD }}" -e "USE testdb; SELECT * FROM Vorlesung ORDER BY 1 LIMIT 10;"
7070
7171 - name : Smoke test (products, optional)
7272 run : |
You can’t perform that action at this time.
0 commit comments