-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #1368
- Loading branch information
Showing
11 changed files
with
131 additions
and
56 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
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,31 @@ | ||
# other objects get informative error | ||
|
||
Code | ||
capture_dot(lf, input) | ||
Condition | ||
Error: | ||
! Cannot translate shiny inputs to SQL. | ||
i Do you want to force evaluation in R with (e.g.) `!!input$x` or `local(input$x)`? | ||
Code | ||
capture_dot(lf, x()) | ||
Output | ||
x() | ||
Code | ||
capture_dot(lf, df) | ||
Condition | ||
Error: | ||
! Cannot translate a data.frame to SQL. | ||
i Do you want to force evaluation in R with (e.g.) `!!df$x` or `local(df$x)`? | ||
Code | ||
capture_dot(lf, l) | ||
Condition | ||
Error: | ||
! Cannot translate an empty list to SQL. | ||
i Do you want to force evaluation in R with (e.g.) `!!l` or `local(l)`? | ||
Code | ||
capture_dot(lf, mean) | ||
Condition | ||
Error: | ||
! Cannot translate a function to SQL. | ||
i Do you want to force evaluation in R with (e.g.) `!!mean` or `local(mean)`? | ||
|
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