MCPcopy Create free account

hub / github.com/christopherhesse/rethinkgo / types & classes

Types & classes35 in github.com/christopherhesse/rethinkgo

↓ 1 callersTypeAliasDatum_DatumType
ql2/ql2.pb.go:175
↓ 1 callersTypeAliasFrame_FrameType
ql2/ql2.pb.go:91
↓ 1 callersTypeAliasQuery_QueryType
ql2/ql2.pb.go:52
↓ 1 callersTypeAliasResponse_ResponseType
ql2/ql2.pb.go:127
↓ 1 callersTypeAliasTerm_TermType
ql2/ql2.pb.go:223
↓ 1 callersTypeAliasVersionDummy_Version
ql2/ql2.pb.go:16
StructBacktrace
ql2/ql2.pb.go:640
StructDatum
ql2/ql2.pb.go:696
StructDatum_AssocPair
ql2/ql2.pb.go:767
StructErrBadQuery
ErrBadQuery indicates that the server has told us we have constructed an invalid query. Example usage: err := r.Table("heroes").ArrayToStream().Arra
error.go:39
StructErrBrokenClient
ErrBrokenClient means the server believes there's a bug in the client library, for instance a malformed protocol buffer.
error.go:64
StructErrRuntime
ErrRuntime indicates that the server has encountered an error while trying to execute our query. Example usage: err := r.Table("table_that_doesnt_ex
error.go:54
StructErrWrongResponseType
ErrWrongResponseType is returned when .Exec(), .One(). or .All() have been used, but the expected response type does not match the type we got from th
error.go:80
StructErrorResponse
Used to indicate that we expect an error from the server
basic_test.go:161
StructExp
Exp represents an RQL expression, such as the return value of r.Expr(). Exp has all the RQL methods on it, such as .Add(), .Attr(), .Filter() etc. To
query.go:176
StructExpectPair
basic_test.go:153
StructFrame
ql2/ql2.pb.go:608
TypeAliasList
List is a shorter name for an array of arbitrary objects
query.go:12
TypeAliasMap
Let user create queries as RQL Exp trees, any errors are deferred until the query is run, so most all functions take interface{} types. interface{} is
query.go:9
TypeAliasMatchMap
basic_test.go:158
StructQuery
ql2/ql2.pb.go:534
StructQuery_AssocPair
ql2/ql2.pb.go:584
StructResponse
ql2/ql2.pb.go:656
StructRethinkSuite
basic_test.go:47
StructRows
Rows is an iterator to move through the rows returned by the database, call rows.Scan(&dest) in a loop to scan a row into the variable `dest`, rows.Ne
rows.go:38
StructSession
Session represents a connection to a server, use it to run queries against a database, with either sess.Run(query) or query.Run(session). Do not shar
session.go:14
StructTableSpec
TableSpec lets you specify the various parameters for a table, then create it with TableCreateWithSpec(). See that function for documentation.
query.go:1402
StructTerm
ql2/ql2.pb.go:791
StructTerm_AssocPair
ql2/ql2.pb.go:846
StructVersionDummy
ql2/ql2.pb.go:526
StructWriteResponse
WriteResponse is a type that can be used to read responses to write queries, such as .Insert() Example usage: var response r.WriteResponse err := r.
responses.go:10
Structconnection
connection is a connection to a rethinkdb database
conn.go:16
Structcontext
context stores some state that is required when converting Expressions to protocol buffers, and has to be passed by value throughout.
protobuf.go:18
TypeAliasexpressionKind
query.go:14
StructjsonChecker
basic_test.go:127