Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Ali Akhtar
he official example you posted conforms to this limitation. >>>> >>>> Thanks, >>>> Cody >>>> >>>> On Nov 1, 2016 7:16 AM, "Ali Akhtar" wrote: >>>> >>>>> I'm not referring to the primary key, just

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Cody Yancey
t; wrote: >>> >>>> I'm not referring to the primary key, just to other columns. >>>> >>>> My primary key is a text, and my table contains a mix of texts, ints, >>>> and timestamps. >>>> >>>> If I try to cha

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Edward Capriolo
khtar" wrote: >> >>> I'm not referring to the primary key, just to other columns. >>> >>> My primary key is a text, and my table contains a mix of texts, ints, >>> and timestamps. >>> >>> If I try to change one of the ints to a coun

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Benjamin Roth
; wrote: >>> >>>> I'm not referring to the primary key, just to other columns. >>>> >>>> My primary key is a text, and my table contains a mix of texts, ints, >>>> and timestamps. >>>> >>>> If I try to change one

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Ali Akhtar
ns a mix of texts, ints, >>> and timestamps. >>> >>> If I try to change one of the ints to a counter and run the create table >>> query, I get the error ' Cannot mix counter and non counter columns in >>> the same table' >>> >&g

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Robert Wille
>> wrote: I'm not referring to the primary key, just to other columns. My primary key is a text, and my table contains a mix of texts, ints, and timestamps. If I try to change one of the ints to a counter and run the create table query, I get the error ' Cannot mix counter and

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Ali Akhtar
lumns. >> >> My primary key is a text, and my table contains a mix of texts, ints, and >> timestamps. >> >> If I try to change one of the ints to a counter and run the create table >> query, I get the error ' Cannot mix counter and non counter columns in >>

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Cody Yancey
s to a counter and run the create table > query, I get the error ' Cannot mix counter and non counter columns in > the same table' > > > On Tue, Nov 1, 2016 at 6:11 PM, Cody Yancey wrote: > >> For counter tables, non-counter types are of course allowed in the &g

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Ali Akhtar
l_name varchar, >> page_name varchar, >> PRIMARY KEY (url_name, page_name) >> ); >> >> Yet if I try to create a table with a mixture of texts, ints, timestamps, >> and counters, i get the error ' Cannot mix counter and non counter columns >> in the same table' >> >> Is that supposed to be allowed or not allowed, given that the official >> example contains a mix of counters and non-counters? >> >

Re: Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Cody Yancey
f texts, ints, timestamps, > and counters, i get the error ' Cannot mix counter and non counter columns > in the same table' > > Is that supposed to be allowed or not allowed, given that the official > example contains a mix of counters and non-counters? >

Cannot mix counter and non counter columns in the same table

2016-11-01 Thread Ali Akhtar
try to create a table with a mixture of texts, ints, timestamps, and counters, i get the error ' Cannot mix counter and non counter columns in the same table' Is that supposed to be allowed or not allowed, given that the official example contains a mix of counters and non-counters?