citusdata / citusdata/postgres_vectorization_test
Should functions work with vectorization
Open
- Dominant language
- C
- Stars
- 335
- Forks
- 23
- PR merge metrics
- No merged PRs in 30d
Description
I've got pretty simple table;
``` sql
CREATE FOREIGN TABLE samples_cstore
(
id integer,
sampled_at timestamp without time zone
)
```
Trying run datetrunc with grouping as
``` sql
select date_trunc('day', sampled_at) from samples_cstore group by 1;
```
kills psql, I get
```
The connection to the server was lost. Attempting reset: Failed.
```
I'm on osx 10.9 with homebrewed postgres 9.3
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.