forked from infiniflow/infinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
120 lines (101 loc) · 1.64 KB
/
.gitignore
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
# .gitignore uses glob patterns instead of regex
# file names without extension
*
!*.*
!*/
# names with special characters
*#*
*~*
# names with given extension
*.a
*.app
*.autobak
*.class
*.d
*.dll
*.dylib
*.exe
*.gch
*.gz
*.l.cc
*.la
*.lai
*.lib
*.lo
*.log
*.mod
*.o
*.obj
*.orig
*.out
*.output
*.pb.h
*.pb.cc
*.pch
*.pyc
*.slo
*.smod
*.so
*.tab.c
*.tab.h
*.tab.cc
*.tab.hh
*.tar
*.tgz
*.xz
*_BACKUP_*
*_BASE_*
*_LOCAL_*
*_REMOTE_*
# build directory of Gradle, CMake etc
tmp
build*/
cmake-build-*
.idea
# ignore compilation configure file
src/bin/compilation_config.h
src/bin/compilation_config.cppm
# bison output file
parser.output
# ignore parser auto generated files
#lexer.cpp
#lexer.h
#parser.cpp
#parser.h
#location.h
#location.hh
#query_lexer.h
#query_lexer.cpp
#query_parser.h
#query_parser.cpp
test/sql/dql/sort.slt
test/sql/**/*big*.slt
test/sql/**/*fvecs*.slt
test/data/csv/test_sort.csv
test/data/csv/*big*.csv
test/data/fvecs/*big*.fvecs
test/data/fvecs/test.fvecs
test/data/fvecs/pysdk_test.fvecs
benchmark/toml/toml_config.h
benchmark/csv/csv_config.h
# py thrift rpc
#python/infinity/remote_thrift/infinity_thrift_rpc/constants.py
#python/infinity/remote_thrift/infinity_thrift_rpc/InfinityService.py
#python/infinity/remote_thrift/infinity_thrift_rpc/InfinityService-remote
#python/infinity/remote_thrift/infinity_thrift_rpc/ttypes.py
# cpp rpc
#src/network/infinity_thrift/*
#python sdk
python/build
python/dist
python/.idea
python/infinity_sdk.egg-info
sift_1m
# ignore all fvecs benchmark file
test/data/benchmark/*
# ignore valgrind output file
callgrind.out.*
# ignore vscode config file
.vscode/
# ignore vscode clangd cache file
.cache/