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

[DO NOT MERGE] Comparison between our main and the forked main #12

Open
wants to merge 28 commits into
base: main-legacy
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3520b6f
Enable multiline DECLARE SECTION
emilienlemaire Jun 6, 2024
c932573
Add algorithm header
emilienlemaire Aug 13, 2024
a15cd1c
Remove c++fs
emilienlemaire Oct 11, 2024
1ab1b77
feat: change preproc to superbol sql preproc
NeoKaios Oct 14, 2024
cef4619
Merge pull request #1 from emilienlemaire/multiline-declare-section
Halbaroth Oct 14, 2024
37164d9
Add a Nix flakes
Halbaroth Oct 14, 2024
ec58d6e
Merge pull request #3 from Halbaroth/nixify
Halbaroth Oct 14, 2024
d54ea7a
Fix the tests
Halbaroth Oct 11, 2024
ba69f4e
Add a script shell to run tests
Halbaroth Oct 11, 2024
7e2cf67
Update for Nix
Halbaroth Oct 14, 2024
b622271
Merge pull request #2 from Halbaroth/fix-tests
Halbaroth Oct 14, 2024
72789e4
Remove std::iterator
Halbaroth Oct 14, 2024
190ea66
Merge pull request #5 from Halbaroth/remove-std-iterator
Halbaroth Oct 14, 2024
1210b8d
Fix the tests
Halbaroth Oct 11, 2024
a181e25
Reduce compile time
Halbaroth Oct 11, 2024
95c5ddc
Merge pull request #6 from Halbaroth/reduce-compile-time
Halbaroth Oct 15, 2024
8d93101
Merge pull request #4 from NeoKaios/feat/superbol-preproc
Halbaroth Oct 15, 2024
b4b4a41
Add a flag to choose the preprocessor
Halbaroth Oct 16, 2024
5d50dfa
Remove generated files
Halbaroth Oct 17, 2024
a58e4a6
Merge pull request #7 from Halbaroth/pp-flags
Halbaroth Oct 17, 2024
eece824
Prepare run test script for Superbol CI
Halbaroth Oct 17, 2024
1bc3234
Merge pull request #8 from Halbaroth/improve-run-test
Halbaroth Oct 17, 2024
5dbe42c
Run spellcheck and add finalizer
Halbaroth Oct 17, 2024
3532c00
Merge pull request #9 from Halbaroth/shellcheck-linter
Halbaroth Oct 17, 2024
a8cc810
Use port > 1000
Halbaroth Oct 17, 2024
44b4a14
Disable two tests
Halbaroth Oct 17, 2024
60f5347
Merge pull request #10 from Halbaroth/disable-tests
Halbaroth Oct 17, 2024
3e6b309
Fix absolute path of INSTALL_DIR
Halbaroth Oct 17, 2024
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
46 changes: 37 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,55 @@
packages
deploy/redist
**/*.bak
# Generated files by autotools
**/Makefile
**/Makefile.in
**/*.log
autom4te.cache
configure
config.status
config.h
stamp-h1
libtool
aclocal.m4
INSTALL
ar-lib
compile
depcomp
install-sh
ltmain.sh
m4/*
missing
ylwrap

# Generated files by the compiler
**/*.o
**/*.lo
**/*.la
**/*.a
**/*.deps
**/*.libs
**/*.log
gixpp/gixpp
runtime/libgixsql-oracle/odpi/.dirstamp

# Generated files by Bison/Flex
libgixpp/gix_esql_parser.cc
libgixpp/gix_esql_parser.hh
libgixpp/gix_esql_scanner.cc
libgixpp/location.hh
**/Makefile.in
aclocal.m4
configure
config.status
config.h

# Generated files by editors
**/*~
**/*.bak
.vs

# Others
_install
_output
packages
deploy/redist
**/Win32
**/x64
*/bin
*/obj
/deploy/checklist.txt
/redist/msvc/x86
/redist/msvcrt/x86
extra_files.mk
Loading