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

nepalez / query_builder / 84

Builds Branch Commit Type Ran Committer Via Coverage
84 master [FEATURE] Add `Batch` statement == Added * QueryBuilder::CQL::Modifiers::Counter * QueryBuilder::CQL::Modifiers::Unlogged * QueryBuilder::CQL::Modifiers::Timestamp * QueryBuilder::CQL::Statements::Batch * QueryBuilder::CQL#batch push 20 Aug 2015 12:29PM UTC nepalez travis-ci pending completion   set done
83 master [FEATURE] Implement 'SELECT' statement table = QueryBuilder::CQL.keyspace(:foo).table(:bar) statement = table.select.where(baz: :qux) statement.to_s # => "SELECT * FROM foo.bar WHERE baz = 'qux';" == Added * QueryBuilder::CQL::Modif... push 20 Aug 2015 11:21AM UTC nepalez travis-ci pending completion   set done
82 master [FEATURE] Implement CREATE FUNCTION statement function = QueryBuilder::CQL.keyspace(:foo).function(:bar) statement = function.create(:java, "doSomething;") statement.to_s # => "CREATE FUNCTION foo.bar RETURNS NULL ON NULL INPUT LANGUA... push 19 Aug 2015 08:13PM UTC nepalez travis-ci pending completion   set done
81 master [FEATURE] Implement CREATE AGGREGATE statement aggregate = QueryBuilder::CQL.keyspace(:foo).aggregate(:numAverage) statement = aggregate.create.argument(:input, :int) statement.to_s # => "CREATE AGGREGATE foo.numAverage (input int);" ... push 19 Aug 2015 07:49PM UTC nepalez travis-ci pending completion   set done
80 master [INTERNAL] Fix inline docs push 19 Aug 2015 12:00PM UTC nepalez travis-ci pending completion   set done
79 master [INTERNAL] Fix README push 19 Aug 2015 11:56AM UTC nepalez travis-ci pending completion   set done
78 master [FEATURE] Implement LIST PERMISSIONS statement permission = QueryBuilder::CQL.keyspace(:foo).permission(:alter) permission.of(:user) # => "LIST ALTER PERMISSION ON KEYSPACE foo OF user;" == Added * QueryBuilder::CQL::Statements::ListPer... push 19 Aug 2015 11:53AM UTC nepalez travis-ci pending completion   set done
77 master [CHANGE] Add `Field` context and use it in ALTER TYPE statements field = QueryBuilder::CQL.keyspace(:wildlife).type(:species).field(:weight) field.create(:int).to_s # => "ALTER TYPE wildlife.species ADD weight int;" field.alter(:text)... push 19 Aug 2015 11:25AM UTC nepalez travis-ci pending completion   set done
76 master [FEATURE] Implement ALTER TYPE ... RENAME statement type = QueryBuilder::CQL.keyspace(:foo).type(:bar) statement = type.rename(:baz, :qux) statement.to_s # => "ALTER TYPE foo.bar RENAME baz TO qux;" == Added * QueryBuilder::CQL::Sta... push 19 Aug 2015 11:07AM UTC nepalez travis-ci pending completion   set done
75 master [FEATURE] Implement ALTER TYPE ... ALTER statement type = QueryBuilder::CQL.keyspace(:foo).type(:bar) statement = type.alter(:baz, :int) statement.to_s # => "ALTER TYPE foo.bar ALTER baz TYPE int;" == Added * QueryBuilder::CQL::Stat... push 19 Aug 2015 10:57AM UTC nepalez travis-ci pending completion   set done
74 master [FEATURE] Implement ALTER TYPE ... ADD statement type = QueryBuilder::CQL.keyspace(:foo).type(:bar) statement = type.add(:baz, :int) statement.to_s # => "ALTER TYPE foo.bar ADD baz int;" == Added * QueryBuilder::CQL::Statements::Upd... push 19 Aug 2015 10:47AM UTC nepalez travis-ci pending completion   set done
73 master [CHANGE] Change syntax for `add` in all statements For the consistency, `add` takes a list of arguments, instead of hash. push 19 Aug 2015 09:02AM UTC nepalez travis-ci pending completion   set done
72 master [FEATURE] Implement 'GRANT' and 'REVOKE' statements root = QueryBuilder::CQL root.permission.grant_to(:admin).to_s # => "GRANT ALL PERMISSIONS ON ALL KEYSPACES TO admin;" keyspace = root.keyspace(:wildlife) keyspace.permission(:d... push 18 Aug 2015 06:47PM UTC nepalez travis-ci pending completion   set done
71 master [FEATURE] Implement 'CREATE ROLE' statement statement = QueryBuilder::CQL.role(:admin).create.with(password = :foobar) statement.to_s # => "CREATE ROLE admin WITH password = 'foobar';" == Added * QueryBuilder::CQL::Statements::CreateRol... push 18 Aug 2015 05:01PM UTC nepalez travis-ci pending completion   set done
70 master [FEATURE] Implement `ALTER TABLE` statements table = QueryBuilder::CQL.keyspaces(:foo).table(:bar) table.alter(baz: :qux).to_s # => "ALTER TABLE foo.bar WITH baz = 'qux';" column = table.column(:qux) column.create(:int).to_s #... push 18 Aug 2015 03:17PM 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