virajjasani commented on pull request #1118: URL: https://github.com/apache/phoenix/pull/1118#issuecomment-769018602
It seems from visibility viewpoint, the problem remains same. Even with user defined CF, we see same column name as pk column. ``` > create table tab3 (col1 INTEGER NOT NULL PRIMARY KEY, col2 INTEGER, a.col1 INTEGER); No rows affected (1.254 seconds) > select * from tab3; +-------+-------+-------+ | COL1 | COL2 | COL1 | +-------+-------+-------+ +-------+-------+-------+ > create table table4 (col1 INTEGER NOT NULL PRIMARY KEY, col2 INTEGER, a.col1 INTEGER, b.col1 INTEGER); No rows affected (1.254 seconds) 0: jdbc:phoenix:> select * from table4; +-------+-------+-------+-------+ | COL1 | COL2 | COL1 | COL1 | +-------+-------+-------+-------+ +-------+-------+-------+-------+ No rows selected (0.01 seconds) ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
