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

Expressions #74

Merged
merged 53 commits into from
Jun 5, 2020
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
75fb84c
Merging fork into branch (#73)
0aix Feb 22, 2019
1789300
wip don't remember what i was doing here
0aix Nov 15, 2019
a6f22a6
not lazy
0aix Nov 15, 2019
2846e33
replaced old filter/projection
0aix Nov 26, 2019
4ee8673
commented out evaluator type-checking
0aix Nov 26, 2019
129f59c
computation uses projection
0aix Nov 26, 2019
5e03f8c
expressions equals/hashcode
0aix Dec 23, 2019
19885b6
transient fields as postagg
0aix Jan 9, 2020
4e66186
culling
0aix Jan 9, 2020
add27a8
why is expose and gson still a thing
0aix Jan 10, 2020
2990ee4
unsure what changed
0aix Jan 29, 2020
8106306
a bunch of changes along with the bql changes for expressions
0aix Feb 17, 2020
6b64739
remove line
0aix Mar 10, 2020
1267f11
Merge branch 'master' into expressions-with-new-types
0aix Mar 10, 2020
01c4918
get schema
0aix Mar 10, 2020
948e5af
remove configure
0aix Mar 12, 2020
3a0c918
bye initialize
0aix Mar 13, 2020
e2135c3
added type back to expressions equals; fixed equality partitioner
0aix Mar 18, 2020
78bec69
test files..
0aix Mar 23, 2020
8daddb5
some tests fixed
0aix Mar 27, 2020
0b20e8f
query
0aix Apr 11, 2020
8d571b2
more serializable + header
0aix Apr 11, 2020
fe8b650
query bug fixes
0aix Apr 15, 2020
7af398d
tests compiled
0aix Apr 21, 2020
c1d51d2
existing tests fixed or commented out
0aix Apr 21, 2020
29b3561
operations tests
0aix Apr 29, 2020
7454474
poststrategy tests
0aix May 1, 2020
d0c3312
query postaggregations tests
0aix May 4, 2020
d34b00e
query aggregation tests
0aix May 4, 2020
5347532
fixed license headers
0aix May 4, 2020
0cb5884
bulleterror coverage
0aix May 5, 2020
07bdf1c
some pr comments
0aix May 6, 2020
eb6fd15
moved packages
0aix May 7, 2020
a04d738
pr comments + fixing tests + some javadocs
0aix May 12, 2020
fea35c7
fixing tests
0aix May 19, 2020
0e740d8
basic checkstyle
0aix May 19, 2020
1006ed3
query/window tests
0aix May 20, 2020
8bc9066
poorly written javadocs
0aix May 21, 2020
0eefaa6
fix a javadoc
0aix May 21, 2020
033c18b
some pr comments
0aix May 29, 2020
5b76061
added some utilities tests
0aix May 29, 2020
574e227
use unmodifiabledatamap from bullet-record
0aix May 29, 2020
376f3cf
projection and filter tests
0aix May 31, 2020
241324d
finished simpleequalitypartitioner tests
0aix Jun 1, 2020
f44ef0c
vacuous truth tests
0aix Jun 1, 2020
3c35b4f
more tests
0aix Jun 1, 2020
f84397c
querier test
0aix Jun 1, 2020
5a0f75e
checkstyle
0aix Jun 1, 2020
6743182
pubsubmessage getcontent byte[]
0aix Jun 1, 2020
664d502
query utils helpers
0aix Jun 3, 2020
7d3f759
pr comments; query util changes; binary any/all subtype fix
0aix Jun 3, 2020
ab2d9cf
bullet-core-1.0.0
0aix Jun 4, 2020
3ba073c
coverage
0aix Jun 5, 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
4 changes: 1 addition & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<packaging>jar</packaging>
<name>bullet-core</name>


<scm>
<developerConnection>scm:git:ssh://git@github.com/bullet-db/bullet-core.git</developerConnection>
<tag>HEAD</tag>
Expand Down Expand Up @@ -36,7 +35,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<bullet.record.version>0.3.0</bullet.record.version>
<bullet.record.version>1.0.0-SNAPSHOT</bullet.record.version>
<sketches.version>0.9.1</sketches.version>
</properties>

Expand Down Expand Up @@ -71,7 +70,6 @@
<version>1.16.4</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.yahoo.bullet</groupId>
<artifactId>bullet-record</artifactId>
Expand Down
232 changes: 0 additions & 232 deletions src/main/java/com/yahoo/bullet/aggregations/Distribution.java

This file was deleted.

Loading