• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nepalez / cql_builder / 20

Builds Branch Commit Type Ran Committer Via Coverage
20 master [FEATURE] Add `cql_list` operator Returns the definition of CQL list: fn = Operators[:cql_list] fn[:int] # => "list<int>" == Added * CQLBuilder::Operators.cql_list push 14 Aug 2015 02:21PM UTC nepalez travis-ci pending completion   set done
19 master [FEATURE] Add `frozen` operator The operator marks value as frozen (returns chunk of CQL): fn = Operators[:frozen] fn[:foo] # => "FROZEN <foo>" == Added * CQLBuilder::Operators.frozen push 14 Aug 2015 02:04PM UTC nepalez travis-ci pending completion   set done
18 master [INTERNAL] Remove `IfNotExists` clause Clause `IfExists` accepts `:reverse` option instead. == Deleted * CQLBuilder::Clauses::IfNotExists == Changed * CQLBuilder::Clauses::IfExists push 14 Aug 2015 01:58PM UTC nepalez travis-ci pending completion   set done
17 master [FEATURE] Implement 'ALTER USER' statement statement = CQLBuilder .alter_user(:foo) .with_password(:bar) .superuser statement.to_s # => "ALTER USER \"foo\" WITH PASSWORD 'bar' SUPERUSER;" == Added * CQLBuilder::Statem... push 14 Aug 2015 01:00PM UTC nepalez travis-ci pending completion   set done
16 master [FEATURE] Implement 'CREATE USER' statement statement = CQLBuilder .create_user(:foo) .if_not_exists .with_password(:bar) .superuser statement.to_s # => "CREATE USER IF NOT EXISTS \"foo\" WITH PASSWORD 'bar' SUPER... push 14 Aug 2015 12:46PM UTC nepalez travis-ci pending completion   set done
15 master [FEATURE] Implement `TRUNCATE` statement statement = CQLBuilder.truncate(:foo).use(:bar) statement.to_s # => "TRUNCATE \"bar\".\"foo\";" == Added * CQLBuilder::Statements::Truncate (AST node) * CQLBuilder.truncate (builder method) push 14 Aug 2015 11:59AM UTC nepalez travis-ci pending completion   set done
14 master [INTERNAL] Code refactoring push 14 Aug 2015 09:14AM UTC nepalez travis-ci pending completion   set done
13 master [INTERNAL] Fix README push 14 Aug 2015 09:10AM UTC nepalez travis-ci pending completion   set done
12 master [BUG FIX] Fix quotes of CLQ identifiers Use double quotes for identifiers See: https://cassandra.apache.org/doc/cql3/CQL.html#identifiers Renamed `quote` to `literal`. == Added * CQLBuilder::Operators.identifier == Changed * CQLBuilder::Oper... push 14 Aug 2015 09:02AM UTC nepalez travis-ci pending completion   set done
11 master [BUG FIX] Remove unnecessary quotes from CLQ push 14 Aug 2015 07:35AM UTC nepalez travis-ci pending completion   set done
10 master [FEATURE] Implement 'LIST USERS' statement statement = CQLBuilder.list_users statement.to_s # => "LIST USERS;" == Added * CQLBuilder::Statements::ListUsers (AST node) * CQLBuilder.list_users (builder method) push 14 Aug 2015 07:13AM UTC nepalez travis-ci pending completion   set done
9 master [FEATURE] Add `cql` operator The operator builds CQL statement from chunks. fn = CQLBuilder::Operators[:cql] fn["FOO", nil, "bar"] # => "FOO bar;" The `#to_s` in statements has been refactored. == Added * CQLBuilder::Operators.cql push 13 Aug 2015 08:40PM UTC nepalez travis-ci pending completion   set done
8 master [FEATURE] Implement 'DROP USER' statement statement = CQLBuilder.drop_user(:foo).if_exists statement.to_s # => "DROP USER IF EXISTS 'foo';" == Added * CQLBuilder::Statements::DropUser (AST node) * CQLBuilder.drop_user (builder method) push 13 Aug 2015 08:05PM UTC nepalez travis-ci pending completion   set done
7 master [FEATURE] Implement 'DROP TYPE' statement statement = CQLBuilder.drop_type(:foo).if_exists statement.to_s # => "DROP TYPE IF EXISTS 'foo';" == Added * CQLBuilder::Statements::DropType (AST node) * CQLBuilder.drop_type (builder method) push 13 Aug 2015 07:58PM UTC nepalez travis-ci pending completion   set done
6 master [INTERNAL] Fix README push 13 Aug 2015 02:31PM UTC nepalez travis-ci pending completion   set done
  • ← Previous
  • 1
  • 2
  • 3
  • 4
  • Next →
  • Back to Repo
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc