Support subqueries in order_by, group_by, distinct, and windows #3041
Annotations
2 errors and 1 warning
ecto integration-test under 1.15.6-erlang-26.1.2-alpine-3.16.7:
Earthfile#L49
The command WITH DOCKER RUN --privileged set -e; timeout=$(expr $(date +%!s(MISSING)) + 60); docker run --name mssql --network=host -d -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=some!Password' "$MCR_IMG"; docker run --name pg --network=host -d -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=postgres "$PG_IMG"; docker run --name mysql --network=host -d -e MYSQL_ROOT_PASSWORD=root "$MYSQL_IMG"; while ! sqlcmd -C -S tcp:127.0.0.1,1433 -U sa -P 'some!Password' -Q "SELECT 1" >/dev/null 2>&1; do test "$(date +%!s(MISSING))" -le "$timeout" || (echo "timed out waiting for mysql"; exit 1); echo "waiting for mssql"; sleep 1; done; while ! pg_isready --host=127.0.0.1 --port=5432 --quiet; do test "$(date +%!s(MISSING))" -le "$timeout" || (echo "timed out waiting for postgres"; exit 1); echo "waiting for postgres"; sleep 1; done; while ! mysqladmin ping --host=127.0.0.1 --port=3306 --protocol=TCP --silent; do test "$(date +%!s(MISSING))" -le "$timeout" || (echo "timed out waiting for mysql"; exit 1); echo "waiting for mysql"; sleep 1; done; MSSQL_URL='sa:xxxxx@127.0.0.1' MYSQL_URL='root:xxxxx@127.0.0.1' PG_URL='postgres:xxxxx@127.0.0.1' ECTO_PATH='/src/ecto' mix test.all; did not complete successfully. Exit code 2
|
ecto integration-test under 1.15.6-erlang-26.1.2-alpine-3.16.7
Process completed with exit code 1.
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Loading