We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758d02c commit db77be4Copy full SHA for db77be4
.github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
18
19
# Verify that data was actually loaded by checking row count
20
echo "Verifying demo data was loaded..."
21
- row_count=$(docker compose exec -T ducklake-init duckdb -c "SELECT COUNT(*) FROM the_ducklake.gene;" | tail -n 2 | head -n 1 | \grep -Eo '\d+')
+ row_count=$(docker compose exec -T ducklake-init duckdb -c "SELECT COUNT(*) FROM the_ducklake.gene;" | tail -n 2 | head -n 1 | grep -Po '\d+')
22
echo "Found $row_count rows in gene table"
23
24
# Ensure we have a reasonable number of rows (gene data should have thousands)
0 commit comments