citus/src
eren 64aefed46f Fix SELECT problem with no target list
Prior to this change, performing a SELECT query without a target
list caused backend to crash.

Sample Query: SELECT FROM github_events; (without any * before FROM)

PostgreSQL:
```
--
(39599 rows)
```
Citus:
```
server closed the connection unexpectedly
    This probably means the server terminated abnormally
    before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.
!>
```

The problem was an unnecessary Assert on column list in
SetRangeTblExtraData(citus_nodefuncs.c)
2016-04-13 11:08:14 +03:00
..
backend Fix SELECT problem with no target list 2016-04-13 11:08:14 +03:00
bin Update copyright dates 2016-03-23 17:14:37 -06:00
include Send COPY rows in binary format 2016-04-12 20:22:31 +02:00
test/regress Fix SELECT problem with no target list 2016-04-13 11:08:14 +03:00