This is an automated email from the ASF dual-hosted git repository. agirish pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/drill-test-framework.git
commit 3074a86e2e56bab7197bd0f8e8be32603544ebc2 Author: Abhishek Girish <[email protected]> AuthorDate: Tue Mar 22 09:42:32 2022 -0700 Adding .gitignore --- .gitignore | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e5cfd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# IntelliJ stuff +.idea/ +*.iml + +# Eclipse +.project +.classpath +.settings + +# Mac stuff +*.DS_Store + +# Don't check in main configuration file (only example) +conf/drillTestConfig.properties + +# Drill and Framework stuff +*.class +**/target/* +logs/* +git.properties +framework/resources/Datasources/s3minio/minio/minio_data/.minio.sys +framework/resources/Datasources/s3minio/minio/minio_data/tstbucket/tmp/ppruning/ +framework/resources/Datasources/s3minio/minio/minio_data/tstbucket/tmp/gitignore + +# Hive stuff +metastore_db +derby.log + +# Large Datasets +framework/resources/Datasources/complex/json/complex.json +framework/resources/Datasources/complex/json/complexga100k.json +framework/resources/Datasources/flatten_operators/100000rows/ +framework/resources/Datasources/json/ +framework/resources/Datasources/mondrian/ +framework/resources/Datasources/parquet/tpcds_sf1/ +framework/resources/Datasources/text/ +framework/resources/Datasources/tpcds/sf1/ +framework/resources/Functional/Failing/ +framework/resources/Functional/data-shapes/wide-columns/5000/1000rows/parquet/large/ +framework/resources/Functional/flatten_operators/100000rows/large/ +framework/resources/Datasources/table_function/DRILL-5166* +framework/resources/Datasources/hive_storage/skipHeaderFooter/DRILL_5941* +framework/resources/Datasources/tpcds1_hive1dot2_withdate/ +framework/resources/Datasources/tpcds_hivegenerated_parquet/ +framework/resources/Datasources/tpch/sf1/ +framework/resources/Datasources/hive_storage/md1119_parquet/ +framework/resources/Datasources/schema_change_empty_batch/data/ +framework/resources/Datasources/ctas/decimal/fragments/decimal_big.tsv +framework/resources/Datasources/ctas/decimal/fragments/decimal_big_zero_prec.tsv +framework/resources/Datasources/ctas/decimal/fragments/decimal_big_zero_scale.tsv +framework/resources/Datasources/ctas/decimal/fragments/negative/decimal_big_zero_scale.tsv +framework/resources/Datasources/s3minio/minio/minio_data/tstbucket/tmp/big_files/ + +# Logs +drill.log* + +# External +framework/resources/External/
