javier ramírez

Results 25 issues of javier ramírez

I had a typo in which I was passing the `client.conf.string=` property, with a trailing equal sign. Of course I had an error message saying this ``` {"error_code":500,"message":"Either 'client.conf.string' or...

enhancement

### Is your feature request related to a problem? If you have a CSV with timestamps (specially for designated, but not only) QuestDB should allow to force a timezone override,...

New feature
Friction

### Is your feature request related to a problem? ## Background Currently, the `GROUPS` window frame specification is implemented in QuestDB but lacks support for aggregation functions like `AVG` and...

New feature

### To reproduce Execute this a few times ``` curl -G -H "Statement-Timeout: 1" --data-urlencode "query=SELECT timestamp, symbol, rank() OVER (PARTITION BY symbol ORDER BY price ) AS theRank FROM...

Bug
REST API

### Is your feature request related to a problem? first_value OVER() is a great way of getting LAG functionality, but as of today we support only the Double data type....

New feature
hacktoberfest
Friction

### To reproduce In the query below. If you uncomment `Alternative 1` it works, if you uncomment `Alternative 2` it does not, saying `left side of time series join has...

Bug

### Is your feature request related to a problem? I was under the impression that a table by default is created with WAL enabled and with partitioning enabled, but this...

New feature
a hunch
Friction

### Is your feature request related to a problem? It would be great if QuestDB could accept multiple statements in a single call. The use case is mostly for DDL,...

New feature
Friction

### To reproduce If you try this query you get a (correct) error ``` select timestamp, symbol, side, max(price) from trades where timestamp in '2024-05-27T06' and symbol = 'DOT-USD' sample...

Bug
SQL

When adding columns to the sender, if we pass a null value, as in ``` sender.table('prices').symbol('instrument', 'EURUSD') .floatColumn('bid', null).at(Date.now(), 'ms'); ``` It would be convenient that the column was ignored,...

enhancement