Maciej Brencz
Maciej Brencz
@collerek - yay, you're back! 🙂
@collerek - your suggestions do make sense. I have a question regarding how we'll support `LIKE` conditions. What will be the format of `where_conditions`? Will it be something like: ```python...
Tricky one. Then comes the question if we should for instance [support PIVOT as well](https://spark.apache.org/docs/latest/sql-ref-syntax-qry-select-pivot.html)? Let's deal with this one in a separate PR / [GitHub discussions thread](https://github.com/macbre/sql-metadata/discussions).
```python >>> import Parser from sql_metadata >>> Parser('SELECT a, (b+c) as alias FROM table').columns ['a', 'b', 'c'] >>> Parser('SELECT a, (b+c) as alias FROM table').columns_aliases {'alias': ['b', 'c']} >>> Parser('SELECT...
Yeah, this definitely looks great! Thanks @tobymao. I'll give it a closer look in the following days.
@kkadu - can you try to provide a bit shorter SQL query that is still affected by the bug? It will make fixing it a bit easier (and also be...
``` TypeError: Cannot read properties of undefined (reading 'Galaxy S5') 41 | device, 42 | profileName, > 43 | devices[profileName] | ^ 44 | ); 45 | 46 | phantomas.on("init",...
Pinging @gmetais. @christophe-ledu - can you share what version of phantomas you're running? I'm also not sure how the `YellowLabTools-server` is significant here? Are you running the phantomas container inside...
> Could it be related to the new headless mode ? Worth checking. I'll introduce a command line option to disable the new headless mode and fall back to the...