-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change in the format * Added interfaces for basic functionality * Setting the selection core inside the selection query * Query mechanism operate on core * Core implementations do the job * Simplified from clause * Changed query creation * Formatted latest changes * Added subquery successfully * Supporting sub queries * Removed access to public constructors * Formatting * Removed generics where not needed * Removed unecessary generics * Removed unnecessary diamond expression * Simplified construction of select query * Changed select query * Added simplified subquery creation * Added simplified subquery creation * Changed query builder * Fixed formatting * Moving to subquery * More fun with diamonds * Generified sub query functionality * Added influxdb query builder * Minor changes * Added flexibility on the query building * Generified subqueries * Sub query simplification * Added sub query * Added sub query feature * Added test for subquery * Added query string * Added support for slimit * Added tz support * Added timezone test * Added regex on clause * Added formatting * Added subqueries
- Loading branch information
1 parent
98542d6
commit 05f2a03
Showing
27 changed files
with
1,599 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/main/java/org/influxdb/querybuilder/QueryStringBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.influxdb.querybuilder; | ||
|
||
interface QueryStringBuilder { | ||
|
||
StringBuilder buildQueryString(final StringBuilder stringBuilder); | ||
|
||
StringBuilder buildQueryString(); | ||
} |
Oops, something went wrong.