Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused lfs attributes for test csv #49

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
*.[ch] citus-style
/data/customer_reviews_1998.csv filter=lfs diff=lfs merge=lfs -text
1 change: 0 additions & 1 deletion data/.gitattributes

This file was deleted.

4 changes: 4 additions & 0 deletions test_data_provider
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/bin/sh
set -eu

if [ ! -f ./data/customer_reviews_1998.csv ]; then
mkdir -p data
cd ./data
curl -L http://examples.citusdata.com/customer_reviews_1998.csv.gz > customer_reviews_1998.csv.gz
gzip -d customer_reviews_1998.csv
Expand Down