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

Fast Schema alter. #666

Open
wants to merge 8 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
4 changes: 3 additions & 1 deletion .msvc/lgraph_core/lgraph_core.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<ClCompile Include="..\..\src\core\audit_logger.cpp" />
<ClCompile Include="..\..\src\core\data_type.cpp" />
<ClCompile Include="..\..\src\core\edge_index.cpp" />
<ClCompile Include="..\..\src\core\field_extractor.cpp" />
<ClCompile Include="..\..\src\core\field_extractor_v1.cpp" />
<CICompile Include="..\..\src\core\field_extractor_v2.cpp"/>
<CICompile Include="..\..\src\core\field_extractor_base.cpp"/>
<ClCompile Include="..\..\src\core\full_text_index.cpp" />
<ClCompile Include="..\..\src\core\global_config.cpp" />
<ClCompile Include="..\..\src\core\graph.cpp" />
Expand Down
8 changes: 7 additions & 1 deletion .msvc/lgraph_core/lgraph_core.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,13 @@
<ClCompile Include="..\..\src\core\graph.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\src\core\field_extractor.cpp">
<ClCompile Include="..\..\src\core\field_extractor_v1.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\src\core\field_extractor_v2.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\src\core\field_extractor_base.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\src\core\data_type.cpp">
Expand Down
2 changes: 1 addition & 1 deletion ci/ut.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ OMP_NUM_THREADS=8 ./fma_unit_test -t all
if [[ "$ASAN" == "asan" ]]; then
export LSAN_OPTIONS=suppressions=$MY_WORKSPACE/test/asan.suppress
fi
OMP_NUM_THREADS=8 ./unit_test --gtest_output=xml:$MY_WORKSPACE/testresult/gtest/
OMP_NUM_THREADS=8 ./unit_test --gtest_output=xml:$MY_WORKSPACE/testresult/gtest/ --gtest_break_on_failure=false
rm -rf testdb* .import_tmp

if [[ "$ASAN" == "asan" ]]; then
Expand Down
Loading
Loading