-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.gitignore
More file actions
134 lines (109 loc) · 2.1 KB
/
.gitignore
File metadata and controls
134 lines (109 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Cache
**/__pycache__/
.cache
.pixi
# Compiled python modules.
*.pyc
*.pyd
.python-version
*~
# Pytest artifacts
*.xml
# Setuptools distribution folder.
/dist
# Python egg metadata, regenerated from source files by setuptools.
**/*.egg-info
**/*.egg
*.o
*.so
build/
docs/_build/
*.DS_Store
# Config
.vscode
iceberg/**/.idea
typings
compile_commands.json
.envrc
.clangd
# Jupyter checkpoints
*.ipynb_checkpoints/
# Coverage report
coverage.xml
.coverage
# Logs
algebra.log
*.log
# Bodo Generated
bodo/io/csv_json_reader.h
bodo/io/csv_json_reader.cpp
bodo/io/arrow_ext.h
bodo/io/arrow_ext.cpp
bodo/utils/tracing.c
bodo/libs/memory.cpp
bodo/io/pyarrow_wrappers.cpp
bodo/io/pyarrow_wrappers.h
bodo/io/pyarrow_wrappers_api.h
bodo/memory.cpp
bodo/pandas/plan_optimizer.cpp
bodo/tests/memory_tester.cpp
bodo/transforms/type_inference/native_typer.cpp
bodo/transforms/type_inference/native_typer.h
# Iceberg Connector
iceberg_db
iceberg/bodo_iceberg_connector/iceberg-java/target
iceberg/bodo_iceberg_connector/iceberg-java/*.iml
iceberg/bodo_iceberg_connector/jars
# --------BodoSQL--------
# Compiled class file
BodoSQL/**/*.class
# BlueJ files
BodoSQL/**/*.ctxt
# Mobile Tools for Java (J2ME)
BodoSQL/.mtj.tmp/
# Package Files #
BodoSQL/**/*.jar
BodoSQL/**/*.war
BodoSQL/**/*.nar
BodoSQL/**/*.ear
BodoSQL/**/*.zip
BodoSQL/**/*.tar.gz
BodoSQL/**/*.conda
BodoSQL/**/*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
BodoSQL/hs_err_pid*
# local maven repo
bodosql-protocol-mvn/
# Sphinx documentation
BodoSQL/docs/_build/
# Distribution / packaging
BodoSQL/.Python
BodoSQL/build/
BodoSQL/develop-eggs/
BodoSQL/dist/
BodoSQL/downloads/
BodoSQL/eggs/
BodoSQL/.eggs/
BodoSQL/lib/
BodoSQL/lib64/
BodoSQL/parts/
BodoSQL/sdist/
BodoSQL/var/
wheels/
BodoSQL/share/python-wheels/
BodoSQL/.installed.cfg
BodoSQL/MANIFEST
BodoSQL/test-output.xml
# development documentation builds
BodoSQL/dev_docs/_build
.env
# image artifacts
ami_share_requests.json
vmi_share_requests.json
amis_to_remove*.json
bodo_versions.txt
*_manifest_*.json
.vscode/*
.DS_Store
.idea
.venv