MCPcopy Create free account

hub / github.com/christopherhesse/rethinkgo / functions

Functions256 in github.com/christopherhesse/rethinkgo

MethodReset
()
ql2/ql2.pb.go:530
MethodReset
()
ql2/ql2.pb.go:543
MethodReset
()
ql2/ql2.pb.go:590
MethodReset
()
ql2/ql2.pb.go:615
MethodReset
()
ql2/ql2.pb.go:645
MethodReset
()
ql2/ql2.pb.go:664
MethodReset
()
ql2/ql2.pb.go:707
MethodReset
()
ql2/ql2.pb.go:773
MethodReset
()
ql2/ql2.pb.go:800
MethodReset
()
ql2/ql2.pb.go:852
MethodReturnValues
ReturnValues tells the server, when performing a single row insert/update/delete/upsert, to return the new and old values on single row Example usage
query.go:2036
MethodRun
Run executes a query directly on a specific session and returns an iterator that moves through the resulting JSON rows with rows.Next() and rows.Scan(
session.go:132
FunctionRuntimeError
RuntimeError tells the server to respond with a ErrRuntime, useful for testing. Example usage: err := r.RuntimeError("hi there").Run(session).Err()
query.go:299
MethodSample
Sample selects a given number of elements from an array randomly with a uniform distribution. Example usage: var response []string err = r.Expr(r.Li
query.go:1993
MethodSetDifference
SetDifference removes the given values from an array and returns the unique values of the resulting array. Example usage: var response []string err
query.go:1949
MethodSetInsert
SetInsert adds a value to an array and returns the unique values of the resulting array. Example usage: var response []string err = r.Expr(r.List{"a
query.go:1921
MethodSetIntersection
SetIntersection returns all the unique values that appear in both arrays. Example usage: var response []string err = r.Expr(r.List{"a", "b", "b"}).S
query.go:1963
MethodSetTimeout
SetTimeout causes any future queries that are run on this session to timeout after the given duration, returning a timeout error. Set to zero to disa
session.go:93
MethodSetUnion
SetUnion adds multiple values to an array and returns the unique values of the resulting array. Example usage: var response []string err = r.Expr(r.
query.go:1935
MethodSetUpSuite
(c *test.C)
basic_test.go:49
MethodSpliceAt
SpliceAt inserts multiple values into an array at the given index Example usage: var response []string r.Expr(r.List{"a", "b"}).SpliceAt(1, r.List{"
query.go:1810
MethodString
()
ql2/ql2.pb.go:531
MethodString
()
ql2/ql2.pb.go:544
MethodString
()
ql2/ql2.pb.go:591
MethodString
()
ql2/ql2.pb.go:616
MethodString
()
ql2/ql2.pb.go:646
MethodString
()
ql2/ql2.pb.go:665
MethodString
()
ql2/ql2.pb.go:708
MethodString
()
ql2/ql2.pb.go:774
MethodString
()
ql2/ql2.pb.go:853
MethodTable
(name string)
query.go:1498
FunctionTableCreate
TableCreate creates a table with the specified name. Example usage: err := r.TableCreate("heroes").Run(session).Exec()
query.go:1415
FunctionTableCreateWithSpec
TableCreateWithSpec creates a table with the specified attributes. Example usage: spec := TableSpec{Name: "heroes", PrimaryKey: "name"} err := r.Tab
query.go:1431
FunctionTableDrop
TableDrop removes a table from the database. Example usage: err := r.Db("marvel").TableDrop("heroes").Run(session).Exec()
query.go:1462
FunctionTableList
TableList lists all tables in the database. Example usage: var tables []string err := r.TableList().Run(session).All(&tables) Example response: ["
query.go:1449
MethodTableList
()
query.go:1453
MethodTearDownSuite
(c *test.C)
basic_test.go:58
FunctionTest
Hook up gocheck into the gotest runner.
basic_test.go:45
MethodTestDropTable
(c *test.C)
basic_test.go:686
MethodTestGet
(c *test.C)
basic_test.go:669
MethodTestGroups
(c *test.C)
basic_test.go:659
MethodTestOrderBy
(c *test.C)
basic_test.go:676
MethodUnmarshalJSON
(data []byte)
ql2/ql2.pb.go:43
MethodUnmarshalJSON
(data []byte)
ql2/ql2.pb.go:82
MethodUnmarshalJSON
(data []byte)
ql2/ql2.pb.go:118
MethodUnmarshalJSON
(data []byte)
ql2/ql2.pb.go:166
MethodUnmarshalJSON
(data []byte)
ql2/ql2.pb.go:214
MethodUnmarshalJSON
(data []byte)
ql2/ql2.pb.go:517
MethodUse
Use changes the default database for a connection. This is the database that will be used when a query is created without an explicit database. This
session.go:106
MethodUseOutdated
UseOutdated tells the server to use potentially out-of-date data from all tables already specified in this query. The advantage is that read queries m
query.go:417
MethodWithFields
WithFields filters an array to only include objects with all specified fields, then removes all extra fields from each object. Example usage: object
query.go:1768
FunctiongetBacktraceFrames
(response *p.Response)
error.go:21
Functioninit
()
ql2/ql2.pb.go:870
FunctionprotoInt64OrNil
(i int64)
utils.go:15
FunctionprotoStringOrNil
(s string)
utils.go:8
FunctiontoArray
toArray and toObject seem overly complicated, like maybe some sort of assignment assertion would be enough
protobuf.go:478
← previous201–256 of 256, ranked by callers