-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
klarysz
committed
Aug 17, 2022
1 parent
8f17961
commit 0e266f2
Showing
21 changed files
with
268 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.2.8.2 | ||
v0.2.8.3 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
parameters: | ||
- assumed: true | ||
datatype: string | ||
id: ID | ||
kind: query | ||
name: ID | ||
required: false | ||
- assumed: true | ||
cardinality: Many | ||
datatype: string | ||
id: Columns | ||
kind: query | ||
multi: true | ||
name: Columns | ||
required: false | ||
- datatype: time.Time | ||
id: quantity | ||
kind: query | ||
name: quantity | ||
required: false | ||
- assumed: true | ||
datatype: string | ||
id: ID | ||
kind: query | ||
name: ID | ||
required: false | ||
- assumed: true | ||
cardinality: Many | ||
datatype: string | ||
id: Columns | ||
kind: query | ||
multi: true | ||
name: Columns | ||
required: false | ||
- datatype: time.Time | ||
id: quantity | ||
kind: query | ||
name: quantity | ||
required: false | ||
source: | | ||
SELECT *, ( | ||
SELECT abc | ||
FROM T2 | ||
WHERE 1=2 | ||
) as abc FROM T1 | ||
WHERE 1=1 | ||
#set($valueSet = 123) | ||
#if($Has.ID) | ||
AND ID = 10 | ||
#end | ||
#foreach($column in $Columns) | ||
$column.Id | ||
#end | ||
#if($Has.quantity) | ||
AND quantity = $quantity /* {"DataType": "time.Time"} */ | ||
AND quantity = $Unsafe.quantity | ||
#end | ||
SELECT *, ( | ||
SELECT abc | ||
FROM T2 | ||
WHERE 1=2 | ||
) as abc FROM T1 | ||
WHERE 1=1 | ||
#set($valueSet = 123) | ||
#if($Has.ID) | ||
AND ID = 10 | ||
#end | ||
#foreach($column in $Columns) | ||
$column.Id | ||
#end | ||
#if($Has.quantity) | ||
AND quantity = $quantity | ||
AND quantity = $Unsafe.quantity | ||
#end |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
[ | ||
{}, | ||
{ | ||
"id": 1, | ||
"name" : "type 1", | ||
"account_id": 33 | ||
}, | ||
{ | ||
"id": 11, | ||
"name" : "type 2", | ||
"account_id": 33 | ||
}, | ||
{ | ||
"id": 111, | ||
"name" : "type 3", | ||
"account_id": 36 | ||
}, | ||
{ | ||
"id": 4, | ||
"name" : "type 4", | ||
"account_id": 36 | ||
}, | ||
{ | ||
"id": 5, | ||
"name" : "type 5", | ||
"account_id": 37 | ||
}, | ||
{ | ||
"id": 2, | ||
"name" : "type 6", | ||
"account_id": 37 | ||
} | ||
] |
Oops, something went wrong.