Michael Chow
Michael Chow
Hello--thanks for this package (and the handy R version too!). I noticed that the R package contains the data itself, while the python package (as installed) fetches it from github...
Currently, a common pattern is to repeat visitor methods like below. But could be collapsed easily. ```python def visitQuery_specification(self, ctx): return SelectStmt._from_fields(self, ctx) def visitInsert_statement(self, ctx): return InsertStmt._from_fields(self, ctx) def...
*** =solution ```{r} f % check_body() %>% check_function('sum', index=1) ``` **message** "There is something wrong in the following function call sum(a + b, …): … Used in a situation where...
In the case below... ``` check_object('x') %>% check_equal(eval = FALSE) ``` the first SCT checks the object exists, and the second checks it's value. Because of this, the argument `eval`...
For formulas `y ~ 1 + x` and `y ~ x`, use a diff in the message
This has come up in a few discussions, so putting here to track. ### What is SCT boilerplate? Suppose a person writes a script with three variables, as below.. ```...
(below are rough thoughts) ### Classes and SCT dispatching Currently testwhat keeps a of R6 State classes in `state.R`. However, the R6 classes are used only as data containers, while...
If I run dbc_init(..., "my_db"), it sets variables for tables like `my_db_public_some_table`. This happens for all tables that exist when I run dbc_init and is super handy! However, if I...
Hey--I've been really enjoying using ibis with bigquery! I've noticed that for bigquery BIGNUMERIC columns, it throws this error when connecting... ``` SyntaxError: Type cannot be parsed: BIGNUMERIC ``` It...