From 2af87b36922b0439036bb1b33b053803ed999aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Thu, 11 Jul 2024 10:33:07 +0200 Subject: [PATCH] Fix NULL values --- .github/workflows/main.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b08e2c537..04cc71f1f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -51,6 +51,9 @@ jobs: - run: c2cciutils-docker-logs if: always() + - name: Fix null values + run: docker compose exec tools psql -c "UPDATE main_2_7.tsearch SET label = 'no-label' WHERE label is NULL;" + - name: Run the acceptance tests run: make acceptance - run: c2cciutils-docker-logs