Created
August 26, 2012 19:47
-
-
Save tux21b/3483042 to your computer and use it in GitHub Desktop.
LIMIT isn't working as expected...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP KEYSPACE gocql_wiki; | |
CREATE KEYSPACE gocql_wiki | |
WITH strategy_class = 'SimpleStrategy' | |
AND strategy_options:replication_factor = 1; | |
USE gocql_wiki; | |
CREATE TABLE page ( | |
title varchar, | |
revid timeuuid, | |
body varchar, | |
hits int, | |
protected boolean, | |
modified timestamp, | |
attachment blob, | |
PRIMARY KEY (title, revid) | |
); | |
INSERT INTO page (title,revid,body,hits,modified,protected) | |
VALUES ('LoremIpsum','2012-08-26 21:35:02+0000','Lorem ipsum dolor sit amet',12,'2012-08-22 12:00:08+0000','true'); | |
INSERT INTO page (title,revid,body,hits,modified,protected) | |
VALUES ('Frontpage','2012-08-24 21:35:02+0000','Hello world!',0,'2012-08-20 12:00:00+0000','false'); | |
INSERT INTO page (title,revid,attachment,body,hits,modified,protected) VALUES | |
('Frontpage','2012-08-26 21:35:02+0000','696d67206461746100','Hello modified world!',0,'2012-08-22 12:00:00+0000','false'); | |
SELECT * FROM page; | |
SELECT * FROM page LIMIT 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment