8000 Feature/internal issue #672 by Dronplane · Pull Request #11370 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Feature/internal issue #672 #11370

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

Merged
merged 39 commits into from
Apr 3, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d41bf1b
Tests now passes
Dronplane Mar 25, 2020
6ab67ce
More tests
Dronplane Mar 25, 2020
cd77866
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Mar 25, 2020
c0ee917
Added compression settings
Dronplane Mar 25, 2020
d988302
Fixed storage compression settings
Dronplane Mar 25, 2020
9c7e874
reworked compression setting
Dronplane Mar 26, 2020
e431072
added mock compressor
Dronplane Mar 26, 2020
2cb1112
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Mar 26, 2020
b4daac1
fixed linking
Dronplane Mar 27, 2020
63f0fac
added primarySortCompression
Dronplane Mar 29, 2020
61975a8
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Mar 29, 2020
a92ce3b
Added tests
Dronplane Mar 30, 2020
5757c47
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Mar 30, 2020
ffa1248
fix tests for mac
Dronplane Mar 30, 2020
79561da
added primarySortCompression test
Dronplane Mar 30, 2020
e0b220f
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Mar 31, 2020
62ea27b
added primarySortCompression and storedValues compression to js tests.
Dronplane Apr 1, 2020
e6a390b
more tests
Dronplane Apr 1, 2020
3b60ac0
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Apr 1, 2020
80583ba
jslint fixes
Dronplane Apr 1, 2020
8a36791
code cleanup. Jaccard function fix for empty arrays
Dronplane Apr 1, 2020
b27ab6e
Update CHANGELOG
Dronplane Apr 1, 2020
e3f7746
Code cleanup. More tests
Dronplane Apr 1, 2020
8e12b0d
test fixes
Dronplane Apr 1, 2020
8c473c0
fixed bug
Dronplane Apr 1, 2020
373a884
test
Dronplane Apr 1, 2020
91d2f42
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Apr 1, 2020
93dd5f8
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Apr 2, 2020
5c9c0f5
adressed review comments
Dronplane Apr 2, 2020
f14afc2
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Apr 2, 2020
6429477
Fix after merge
Dronplane Apr 2, 2020
8edfb98
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Apr 2, 2020
975d709
Merge branch 'devel' into feature/internal-issue-#672
Dronplane Apr 2, 2020
693cd26
fix build
Dronplane Apr 2, 2020
a8a3dd5
cleanup
Dronplane Apr 2, 2020
523072b
cleanup
Dronplane Apr 2, 2020
da4c6f8
fixed backslash
Dronplane Apr 3, 2020
eafd1cf
fix
Dronplane Apr 3, 2020
022ee7a
fix typo
Dronplane Apr 3, 2020
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
Prev Previous commit
Next Next commit
jslint fixes
  • Loading branch information
Dronplane committed Apr 1, 2020
commit 80583ba6d00a66c2dac885ceba32bff45c86b319
2 changes: 1 addition & 1 deletion tests/js/client/shell/shell-inventory-cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function clusterInventorySuite () {
assertEqual("object", typeof storedValue);
assertTrue(Array.isArray(storedValue.field));
assertEqual("string", typeof storedValue.compression);
}
});
//assertEqual("number", typeof view.version);
assertEqual("number", typeof view.writebufferActive);
assertEqual("number", typeof view.writebufferIdle);
Expand Down
4 changes: 2 additions & 2 deletions tests/js/common/aql/aql-view-arangosearch-ddl-cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ function IResearchFeatureDDLTestSuite () {
assertEqual(true, primarySort[0].asc);
assertEqual("another.field", primarySort[1].field);
assertEqual(false, primarySort[1].asc);
assertEqual("none", propertis.primarySortCompression);
assertEqual("none", properties.primarySortCompression);
assertEqual(42, properties.cleanupIntervalStep);
assertEqual(12345, properties.commitIntervalMsec);
assertEqual(10000, properties.consolidationIntervalMsec);
Expand Down Expand Up @@ -815,7 +815,7 @@ function IResearchFeatureDDLTestSuite () {
assertEqual(true, primarySort[0].asc);
assertEqual("another.field", primarySort[1].field);
assertEqual(false, primarySort[1].asc);
assertEqual("none", propertis.primarySortCompression);
assertEqual("none", properties.primarySortCompression);
assertEqual(442, properties.cleanupIntervalStep);
assertEqual(1000, properties.commitIntervalMsec);
assertEqual(10000, properties.consolidationIntervalMsec);
Expand Down
4 changes: 2 additions & 2 deletions tests/js/common/aql/aql-view-arangosearch-ddl-noncluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ function IResearchFeatureDDLTestSuite () {
assertEqual(true, primarySort[0].asc);
assertEqual("another.field", primarySort[1].field);
assertEqual(false, primarySort[1].asc);
assertEqual("none", propertis.primarySortCompression);
assertEqual("none", properties.primarySortCompression);
assertEqual(42, properties.cleanupIntervalStep);
assertEqual(12345, properties.commitIntervalMsec);
assertEqual(10000, properties.consolidationIntervalMsec);
Expand Down Expand Up @@ -813,7 +813,7 @@ function IResearchFeatureDDLTestSuite () {
assertEqual(true, primarySort[0].asc);
assertEqual("another.field", primarySort[1].field);
assertEqual(false, primarySort[1].asc);
assertEqual("none", propertis.primarySortCompression);
assertEqual("none", properties.primarySortCompression);
assertEqual(442, properties.cleanupIntervalStep);
assertEqual(1000, properties.commitIntervalMsec);
assertEqual(10000, properties.consolidationIntervalMsec);
Expand Down
0