You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@phoenix.apache.org by GitBox <gi...@apache.org> on 2021/10/28 10:57:49 UTC

[GitHub] [phoenix] stoty removed a comment on pull request #1321: PHOENIX-5865 column that has default value can not be correctly indexed

stoty removed a comment on pull request #1321:
URL: https://github.com/apache/phoenix/pull/1321#issuecomment-953735088


   This breaks selecting from the index table.
   
   `
   create table bubu (id integer primary key, v1 integer default 1, v2 integer);
   create index bibi on bubu (2*v1);
   upsert into bubu values (1,1,1);
   select 2*v1 from bibi;
   select 2*v1 from bibi;
   `


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@phoenix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org