Удалить 'tags'
This commit is contained in:
parent
a165cd9f91
commit
7bc5d42294
387
tags
387
tags
|
@ -1,387 +0,0 @@
|
|||
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
|
||||
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
|
||||
!_TAG_OUTPUT_MODE u-ctags /u-ctags or e-ctags/
|
||||
!_TAG_PROGRAM_AUTHOR Universal Ctags Team //
|
||||
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
|
||||
!_TAG_PROGRAM_URL https://ctags.io/ /official site/
|
||||
!_TAG_PROGRAM_VERSION 0.0.0 /7fcdea3/
|
||||
Begin connection.go /^func (mc *mysqlConn) Begin() (driver.Tx, error) {$/;" f
|
||||
BenchmarkExec benchmark_test.go /^func BenchmarkExec(b *testing.B) {$/;" f
|
||||
BenchmarkParseDSN utils_test.go /^func BenchmarkParseDSN(b *testing.B) {$/;" f
|
||||
BenchmarkQuery benchmark_test.go /^func BenchmarkQuery(b *testing.B) {$/;" f
|
||||
BenchmarkRoundtripBin benchmark_test.go /^func BenchmarkRoundtripBin(b *testing.B) {$/;" f
|
||||
BenchmarkRoundtripTxt benchmark_test.go /^func BenchmarkRoundtripTxt(b *testing.B) {$/;" f
|
||||
Binary driver_test.go /^func (t timeMode) Binary() bool {$/;" f
|
||||
Close connection.go /^func (mc *mysqlConn) Close() (err error) {$/;" f
|
||||
Close rows.go /^func (rows *mysqlRows) Close() error {$/;" f
|
||||
Close rows.go /^func (rows emptyRows) Close() error {$/;" f
|
||||
Close statement.go /^func (stmt *mysqlStmt) Close() error {$/;" f
|
||||
Code errors.go /^ Code string$/;" m struct:MySQLWarning
|
||||
Columns rows.go /^func (rows *mysqlRows) Columns() []string {$/;" f
|
||||
Columns rows.go /^func (rows emptyRows) Columns() []string {$/;" f
|
||||
Commit transaction.go /^func (tx *mysqlTx) Commit() (err error) {$/;" f
|
||||
DBTest driver_test.go /^type DBTest struct {$/;" s
|
||||
DeregisterLocalFile infile.go /^func DeregisterLocalFile(filePath string) {$/;" f
|
||||
DeregisterReaderHandler infile.go /^func DeregisterReaderHandler(name string) {$/;" f
|
||||
DeregisterTLSConfig utils.go /^func DeregisterTLSConfig(key string) {$/;" f
|
||||
DialFunc driver.go /^type DialFunc func(addr string) (net.Conn, error)$/;" t
|
||||
ErrBusyBuffer errors.go /^ ErrBusyBuffer = errors.New("Busy buffer")$/;" v
|
||||
ErrInvalidConn errors.go /^ ErrInvalidConn = errors.New("Invalid Connection")$/;" v
|
||||
ErrMalformPkt errors.go /^ ErrMalformPkt = errors.New("Malformed Packet")$/;" v
|
||||
ErrNoTLS errors.go /^ ErrNoTLS = errors.New("TLS encryption requested but server does not support TLS")$/;" v
|
||||
ErrOldPassword errors.go /^ ErrOldPassword = errors.New("This server only supports the insecure old password authentication/;" v
|
||||
ErrOldProtocol errors.go /^ ErrOldProtocol = errors.New("MySQL-Server does not support required Protocol 41+")$/;" v
|
||||
ErrPktSync errors.go /^ ErrPktSync = errors.New("Commands out of sync. You can't run this command now")$/;" v
|
||||
ErrPktSyncMul errors.go /^ ErrPktSyncMul = errors.New("Commands out of sync. Did you run multiple statements at once?")$/;" v
|
||||
ErrPktTooLarge errors.go /^ ErrPktTooLarge = errors.New("Packet for query is too large. You can change this value on the se/;" v
|
||||
Error errors.go /^func (me *MySQLError) Error() string {$/;" f
|
||||
Error errors.go /^func (mws MySQLWarnings) Error() string {$/;" f
|
||||
Exec connection.go /^func (mc *mysqlConn) Exec(query string, args []driver.Value) (driver.Result, error) {$/;" f
|
||||
Exec statement.go /^func (stmt *mysqlStmt) Exec(args []driver.Value) (driver.Result, error) {$/;" f
|
||||
LastInsertId result.go /^func (res *mysqlResult) LastInsertId() (int64, error) {$/;" f
|
||||
Level errors.go /^ Level string$/;" m struct:MySQLWarning
|
||||
Logger errors.go /^type Logger interface {$/;" i
|
||||
Message errors.go /^ Message string$/;" m struct:MySQLError
|
||||
Message errors.go /^ Message string$/;" m struct:MySQLWarning
|
||||
MySQLDriver driver.go /^type MySQLDriver struct{}$/;" s
|
||||
MySQLError errors.go /^type MySQLError struct {$/;" s
|
||||
MySQLWarning errors.go /^type MySQLWarning struct {$/;" s
|
||||
MySQLWarnings errors.go /^type MySQLWarnings []MySQLWarning$/;" t
|
||||
Next rows.go /^func (rows *binaryRows) Next(dest []driver.Value) error {$/;" f
|
||||
Next rows.go /^func (rows *textRows) Next(dest []driver.Value) error {$/;" f
|
||||
Next rows.go /^func (rows emptyRows) Next(dest []driver.Value) error {$/;" f
|
||||
NextByte utils.go /^func (r *myRnd) NextByte() byte {$/;" f
|
||||
NullTime utils.go /^type NullTime struct {$/;" s
|
||||
NumInput statement.go /^func (stmt *mysqlStmt) NumInput() int {$/;" f
|
||||
Number errors.go /^ Number uint16$/;" m struct:MySQLError
|
||||
Open driver.go /^func (d MySQLDriver) Open(dsn string) (driver.Conn, error) {$/;" f
|
||||
Prepare connection.go /^func (mc *mysqlConn) Prepare(query string) (driver.Stmt, error) {$/;" f
|
||||
Query connection.go /^func (mc *mysqlConn) Query(query string, args []driver.Value) (driver.Rows, error) {$/;" f
|
||||
Query statement.go /^func (stmt *mysqlStmt) Query(args []driver.Value) (driver.Rows, error) {$/;" f
|
||||
RegisterDial driver.go /^func RegisterDial(net string, dial DialFunc) {$/;" f
|
||||
RegisterLocalFile infile.go /^func RegisterLocalFile(filePath string) {$/;" f
|
||||
RegisterReaderHandler infile.go /^func RegisterReaderHandler(name string, handler func() io.Reader) {$/;" f
|
||||
RegisterTLSConfig utils.go /^func RegisterTLSConfig(key string, config *tls.Config) error {$/;" f
|
||||
Rollback transaction.go /^func (tx *mysqlTx) Rollback() (err error) {$/;" f
|
||||
RowsAffected result.go /^func (res *mysqlResult) RowsAffected() (int64, error) {$/;" f
|
||||
Scan utils.go /^func (nt *NullTime) Scan(value interface{}) (err error) {$/;" f
|
||||
SetLogger errors.go /^func SetLogger(logger Logger) error {$/;" f
|
||||
String driver_test.go /^func (t timeMode) String() string {$/;" f
|
||||
TB benchmark_test.go /^type TB testing.B$/;" t
|
||||
TestCRUD driver_test.go /^func TestCRUD(t *testing.T) {$/;" f
|
||||
TestCharset driver_test.go /^func TestCharset(t *testing.T) {$/;" f
|
||||
TestCloseStmtBeforeRows driver_test.go /^func TestCloseStmtBeforeRows(t *testing.T) {$/;" f
|
||||
TestCollation driver_test.go /^func TestCollation(t *testing.T) {$/;" f
|
||||
TestConcurrent driver_test.go /^func TestConcurrent(t *testing.T) {$/;" f
|
||||
TestCustomDial driver_test.go /^func TestCustomDial(t *testing.T) {$/;" f
|
||||
TestDSNParser utils_test.go /^func TestDSNParser(t *testing.T) {$/;" f
|
||||
TestDSNParserInvalid utils_test.go /^func TestDSNParserInvalid(t *testing.T) {$/;" f
|
||||
TestDSNWithCustomTLS utils_test.go /^func TestDSNWithCustomTLS(t *testing.T) {$/;" f
|
||||
TestDateTime driver_test.go /^func TestDateTime(t *testing.T) {$/;" f
|
||||
TestEmptyQuery driver_test.go /^func TestEmptyQuery(t *testing.T) {$/;" f
|
||||
TestErrorsSetLogger errors_test.go /^func TestErrorsSetLogger(t *testing.T) {$/;" f
|
||||
TestErrorsStrictIgnoreNotes errors_test.go /^func TestErrorsStrictIgnoreNotes(t *testing.T) {$/;" f
|
||||
TestFailingCharset driver_test.go /^func TestFailingCharset(t *testing.T) {$/;" f
|
||||
TestFloat driver_test.go /^func TestFloat(t *testing.T) {$/;" f
|
||||
TestFormatBinaryDateTime utils_test.go /^func TestFormatBinaryDateTime(t *testing.T) {$/;" f
|
||||
TestFoundRows driver_test.go /^func TestFoundRows(t *testing.T) {$/;" f
|
||||
TestInt driver_test.go /^func TestInt(t *testing.T) {$/;" f
|
||||
TestLengthEncodedInteger utils_test.go /^func TestLengthEncodedInteger(t *testing.T) {$/;" f
|
||||
TestLoadData driver_test.go /^func TestLoadData(t *testing.T) {$/;" f
|
||||
TestLongData driver_test.go /^func TestLongData(t *testing.T) {$/;" f
|
||||
TestNULL driver_test.go /^func TestNULL(t *testing.T) {$/;" f
|
||||
TestOldPass utils_test.go /^func TestOldPass(t *testing.T) {$/;" f
|
||||
TestPreparedManyCols driver_test.go /^func TestPreparedManyCols(t *testing.T) {$/;" f
|
||||
TestRawBytesResultExceedsBuffer driver_test.go /^func TestRawBytesResultExceedsBuffer(t *testing.T) {$/;" f
|
||||
TestReuseClosedConnection driver_test.go /^func TestReuseClosedConnection(t *testing.T) {$/;" f
|
||||
TestRowsClose driver_test.go /^func TestRowsClose(t *testing.T) {$/;" f
|
||||
TestScanNullTime utils_test.go /^func TestScanNullTime(t *testing.T) {$/;" f
|
||||
TestStmtMultiRows driver_test.go /^func TestStmtMultiRows(t *testing.T) {$/;" f
|
||||
TestStrict driver_test.go /^func TestStrict(t *testing.T) {$/;" f
|
||||
TestString driver_test.go /^func TestString(t *testing.T) {$/;" f
|
||||
TestTLS driver_test.go /^func TestTLS(t *testing.T) {$/;" f
|
||||
TestTimestampMicros driver_test.go /^func TestTimestampMicros(t *testing.T) {$/;" f
|
||||
TestTimezoneConversion driver_test.go /^func TestTimezoneConversion(t *testing.T) {$/;" f
|
||||
Time utils.go /^ Time time.Time$/;" m struct:NullTime
|
||||
Valid utils.go /^ Valid bool \/\/ Valid is true if Time is not NULL$/;" m struct:NullTime
|
||||
Value utils.go /^func (nt NullTime) Value() (driver.Value, error) {$/;" f
|
||||
addr connection.go /^ addr string$/;" m struct:config
|
||||
addr driver_test.go /^ addr string$/;" v
|
||||
affectedRows connection.go /^ affectedRows uint64$/;" m struct:mysqlConn
|
||||
affectedRows result.go /^ affectedRows int64$/;" m struct:mysqlResult
|
||||
allowAllFiles connection.go /^ allowAllFiles bool$/;" m struct:config
|
||||
allowOldPasswords connection.go /^ allowOldPasswords bool$/;" m struct:config
|
||||
appendLengthEncodedInteger utils.go /^func appendLengthEncodedInteger(b []byte, n uint64) []byte {$/;" f
|
||||
available driver_test.go /^ available bool$/;" v
|
||||
binaryRows rows.go /^type binaryRows struct {$/;" s
|
||||
binaryString driver_test.go /^ binaryString timeMode = iota$/;" c
|
||||
binaryTime driver_test.go /^ binaryTime$/;" c
|
||||
buf buffer.go /^ buf []byte$/;" m struct:buffer
|
||||
buf connection.go /^ buf buffer$/;" m struct:mysqlConn
|
||||
buffer buffer.go /^type buffer struct {$/;" s
|
||||
cfg connection.go /^ cfg *config$/;" m struct:mysqlConn
|
||||
check benchmark_test.go /^func (tb *TB) check(err error) {$/;" f
|
||||
checkDB benchmark_test.go /^func (tb *TB) checkDB(db *sql.DB, err error) *sql.DB {$/;" f
|
||||
checkRows benchmark_test.go /^func (tb *TB) checkRows(rows *sql.Rows, err error) *sql.Rows {$/;" f
|
||||
checkStmt benchmark_test.go /^func (tb *TB) checkStmt(stmt *sql.Stmt, err error) *sql.Stmt {$/;" f
|
||||
clientCompress const.go /^ clientCompress$/;" c
|
||||
clientConnectWithDB const.go /^ clientConnectWithDB$/;" c
|
||||
clientFlag const.go /^type clientFlag uint32$/;" t
|
||||
clientFoundRows connection.go /^ clientFoundRows bool$/;" m struct:config
|
||||
clientFoundRows const.go /^ clientFoundRows$/;" c
|
||||
clientIgnoreSIGPIPE const.go /^ clientIgnoreSIGPIPE$/;" c
|
||||
clientIgnoreSpace const.go /^ clientIgnoreSpace$/;" c
|
||||
clientInteractive const.go /^ clientInteractive$/;" c
|
||||
clientLocalFiles const.go /^ clientLocalFiles$/;" c
|
||||
clientLongFlag const.go /^ clientLongFlag$/;" c
|
||||
clientLongPassword const.go /^ clientLongPassword clientFlag = 1 << iota$/;" c
|
||||
clientMultiResults const.go /^ clientMultiResults$/;" c
|
||||
clientMultiStatements const.go /^ clientMultiStatements$/;" c
|
||||
clientNoSchema const.go /^ clientNoSchema$/;" c
|
||||
clientODBC const.go /^ clientODBC$/;" c
|
||||
clientProtocol41 const.go /^ clientProtocol41$/;" c
|
||||
clientReserved const.go /^ clientReserved$/;" c
|
||||
clientSSL const.go /^ clientSSL$/;" c
|
||||
clientSecureConn const.go /^ clientSecureConn$/;" c
|
||||
clientTransactions const.go /^ clientTransactions$/;" c
|
||||
collation connection.go /^ collation uint8$/;" m struct:config
|
||||
collations collations.go /^var collations = map[string]byte{$/;" v
|
||||
columns rows.go /^ columns []mysqlField$/;" m struct:mysqlRows
|
||||
columns statement.go /^ columns []mysqlField \/\/ cached from the first query$/;" m struct:mysqlStmt
|
||||
columnsWithAlias connection.go /^ columnsWithAlias bool$/;" m struct:config
|
||||
comBinlogDump const.go /^ comBinlogDump$/;" c
|
||||
comChangeUser const.go /^ comChangeUser$/;" c
|
||||
comConnect const.go /^ comConnect$/;" c
|
||||
comConnectOut const.go /^ comConnectOut$/;" c
|
||||
comCreateDB const.go /^ comCreateDB$/;" c
|
||||
comDebug const.go /^ comDebug$/;" c
|
||||
comDelayedInsert const.go /^ comDelayedInsert$/;" c
|
||||
comDropDB const.go /^ comDropDB$/;" c
|
||||
comFieldList const.go /^ comFieldList$/;" c
|
||||
comInitDB const.go /^ comInitDB$/;" c
|
||||
comPing const.go /^ comPing$/;" c
|
||||
comProcessInfo const.go /^ comProcessInfo$/;" c
|
||||
comProcessKill const.go /^ comProcessKill$/;" c
|
||||
comQuery const.go /^ comQuery$/;" c
|
||||
comQuit const.go /^ comQuit byte = iota + 1$/;" c
|
||||
comRefresh const.go /^ comRefresh$/;" c
|
||||
comRegisterSlave const.go /^ comRegisterSlave$/;" c
|
||||
comSetOption const.go /^ comSetOption$/;" c
|
||||
comShutdown const.go /^ comShutdown$/;" c
|
||||
comStatistics const.go /^ comStatistics$/;" c
|
||||
comStmtClose const.go /^ comStmtClose$/;" c
|
||||
comStmtExecute const.go /^ comStmtExecute$/;" c
|
||||
comStmtFetch const.go /^ comStmtFetch$/;" c
|
||||
comStmtPrepare const.go /^ comStmtPrepare$/;" c
|
||||
comStmtReset const.go /^ comStmtReset$/;" c
|
||||
comStmtSendLongData const.go /^ comStmtSendLongData$/;" c
|
||||
comTableDump const.go /^ comTableDump$/;" c
|
||||
comTime const.go /^ comTime$/;" c
|
||||
concurrencyLevel benchmark_test.go /^const concurrencyLevel = 10$/;" c
|
||||
config connection.go /^type config struct {$/;" s
|
||||
db driver_test.go /^ db *sql.DB$/;" m struct:DBTest
|
||||
dbname connection.go /^ dbname string$/;" m struct:config
|
||||
dbname driver_test.go /^ dbname string$/;" v
|
||||
dbtype driver_test.go /^ dbtype string$/;" m struct:timeTests
|
||||
decimals rows.go /^ decimals byte$/;" m struct:mysqlField
|
||||
defaultBufSize buffer.go /^const defaultBufSize = 4096$/;" c
|
||||
defaultCollation collations.go /^const defaultCollation byte = 33 \/\/ utf8_general_ci$/;" c
|
||||
deferredClose infile.go /^func deferredClose(err *error, closer io.Closer) {$/;" f
|
||||
dials driver.go /^var dials map[string]DialFunc$/;" v
|
||||
dsn driver_test.go /^ dsn string$/;" v
|
||||
emptyRows rows.go /^type emptyRows struct{}$/;" s
|
||||
errInvalidDSNAddr utils.go /^ errInvalidDSNAddr = errors.New("Invalid DSN: Network Address not terminated (missing closi/;" v
|
||||
errInvalidDSNNoSlash utils.go /^ errInvalidDSNNoSlash = errors.New("Invalid DSN: Missing the slash separating the database nam/;" v
|
||||
errInvalidDSNUnescaped utils.go /^ errInvalidDSNUnescaped = errors.New("Invalid DSN: Did you forget to escape a param value?")$/;" v
|
||||
errLog errors.go /^var errLog Logger = log.New(os.Stderr, "[MySQL] ", log.Ldate|log.Ltime|log.Lshortfile)$/;" v
|
||||
exec connection.go /^func (mc *mysqlConn) exec(query string) error {$/;" f
|
||||
fail driver_test.go /^func (dbt *DBTest) fail(method, query string, err error) {$/;" f
|
||||
fieldFlag const.go /^type fieldFlag uint16$/;" t
|
||||
fieldType rows.go /^ fieldType byte$/;" m struct:mysqlField
|
||||
fieldTypeBLOB const.go /^ fieldTypeBLOB$/;" c
|
||||
fieldTypeBit const.go /^ fieldTypeBit$/;" c
|
||||
fieldTypeDate const.go /^ fieldTypeDate$/;" c
|
||||
fieldTypeDateTime const.go /^ fieldTypeDateTime$/;" c
|
||||
fieldTypeDecimal const.go /^ fieldTypeDecimal byte = iota$/;" c
|
||||
fieldTypeDouble const.go /^ fieldTypeDouble$/;" c
|
||||
fieldTypeEnum const.go /^ fieldTypeEnum$/;" c
|
||||
fieldTypeFloat const.go /^ fieldTypeFloat$/;" c
|
||||
fieldTypeGeometry const.go /^ fieldTypeGeometry$/;" c
|
||||
fieldTypeInt24 const.go /^ fieldTypeInt24$/;" c
|
||||
fieldTypeLong const.go /^ fieldTypeLong$/;" c
|
||||
fieldTypeLongBLOB const.go /^ fieldTypeLongBLOB$/;" c
|
||||
fieldTypeLongLong const.go /^ fieldTypeLongLong$/;" c
|
||||
fieldTypeMediumBLOB const.go /^ fieldTypeMediumBLOB$/;" c
|
||||
fieldTypeNULL const.go /^ fieldTypeNULL$/;" c
|
||||
fieldTypeNewDate const.go /^ fieldTypeNewDate$/;" c
|
||||
fieldTypeNewDecimal const.go /^ fieldTypeNewDecimal byte = iota + 0xf6$/;" c
|
||||
fieldTypeSet const.go /^ fieldTypeSet$/;" c
|
||||
fieldTypeShort const.go /^ fieldTypeShort$/;" c
|
||||
fieldTypeString const.go /^ fieldTypeString$/;" c
|
||||
fieldTypeTime const.go /^ fieldTypeTime$/;" c
|
||||
fieldTypeTimestamp const.go /^ fieldTypeTimestamp$/;" c
|
||||
fieldTypeTiny const.go /^ fieldTypeTiny$/;" c
|
||||
fieldTypeTinyBLOB const.go /^ fieldTypeTinyBLOB$/;" c
|
||||
fieldTypeVarChar const.go /^ fieldTypeVarChar$/;" c
|
||||
fieldTypeVarString const.go /^ fieldTypeVarString$/;" c
|
||||
fieldTypeYear const.go /^ fieldTypeYear$/;" c
|
||||
fileRegister infile.go /^ fileRegister map[string]bool$/;" v
|
||||
fill buffer.go /^func (b *buffer) fill(need int) error {$/;" f
|
||||
flagAutoIncrement const.go /^ flagAutoIncrement$/;" c
|
||||
flagBLOB const.go /^ flagBLOB$/;" c
|
||||
flagBinary const.go /^ flagBinary$/;" c
|
||||
flagEnum const.go /^ flagEnum$/;" c
|
||||
flagMultipleKey const.go /^ flagMultipleKey$/;" c
|
||||
flagNotNULL const.go /^ flagNotNULL fieldFlag = 1 << iota$/;" c
|
||||
flagPriKey const.go /^ flagPriKey$/;" c
|
||||
flagSet const.go /^ flagSet$/;" c
|
||||
flagTimestamp const.go /^ flagTimestamp$/;" c
|
||||
flagUniqueKey const.go /^ flagUniqueKey$/;" c
|
||||
flagUnknown1 const.go /^ flagUnknown1$/;" c
|
||||
flagUnknown2 const.go /^ flagUnknown2$/;" c
|
||||
flagUnknown3 const.go /^ flagUnknown3$/;" c
|
||||
flagUnknown4 const.go /^ flagUnknown4$/;" c
|
||||
flagUnsigned const.go /^ flagUnsigned$/;" c
|
||||
flagZeroFill const.go /^ flagZeroFill$/;" c
|
||||
flags connection.go /^ flags clientFlag$/;" m struct:mysqlConn
|
||||
flags rows.go /^ flags fieldFlag$/;" m struct:mysqlField
|
||||
formatBinaryDateTime utils.go /^func formatBinaryDateTime(src []byte, length uint8, justTime bool) (driver.Value, error) {$/;" f
|
||||
genQuery driver_test.go /^func (t timeTest) genQuery(dbtype string, mode timeMode) string {$/;" f
|
||||
getSystemVar connection.go /^func (mc *mysqlConn) getSystemVar(name string) ([]byte, error) {$/;" f
|
||||
getWarnings errors.go /^func (mc *mysqlConn) getWarnings() (err error) {$/;" f
|
||||
handleErrorPacket packets.go /^func (mc *mysqlConn) handleErrorPacket(data []byte) error {$/;" f
|
||||
handleInFileRequest infile.go /^func (mc *mysqlConn) handleInFileRequest(name string) (err error) {$/;" f
|
||||
handleOkPacket packets.go /^func (mc *mysqlConn) handleOkPacket(data []byte) error {$/;" f
|
||||
handleParams connection.go /^func (mc *mysqlConn) handleParams() (err error) {$/;" f
|
||||
iEOF const.go /^ iEOF byte = 0xfe$/;" c
|
||||
iERR const.go /^ iERR byte = 0xff$/;" c
|
||||
iLocalInFile const.go /^ iLocalInFile byte = 0xfb$/;" c
|
||||
iOK const.go /^ iOK byte = 0x00$/;" c
|
||||
id statement.go /^ id uint32$/;" m struct:mysqlStmt
|
||||
idx buffer.go /^ idx int$/;" m struct:buffer
|
||||
init appengine.go /^func init() {$/;" f
|
||||
init driver.go /^func init() {$/;" f
|
||||
init driver_test.go /^func init() {$/;" f
|
||||
init utils.go /^func init() {$/;" f
|
||||
initDB benchmark_test.go /^func initDB(b *testing.B, queries ...string) *sql.DB {$/;" f
|
||||
initRoundtripBenchmarks benchmark_test.go /^func initRoundtripBenchmarks() ([]byte, int, int) {$/;" f
|
||||
insertId connection.go /^ insertId uint64$/;" m struct:mysqlConn
|
||||
insertId result.go /^ insertId int64$/;" m struct:mysqlResult
|
||||
length buffer.go /^ length int$/;" m struct:buffer
|
||||
loc connection.go /^ loc *time.Location$/;" m struct:config
|
||||
maxPacketAllowed connection.go /^ maxPacketAllowed int$/;" m struct:mysqlConn
|
||||
maxPacketSize const.go /^ maxPacketSize = 1<<24 - 1$/;" c
|
||||
maxWriteSize connection.go /^ maxWriteSize int$/;" m struct:mysqlConn
|
||||
mc rows.go /^ mc *mysqlConn$/;" m struct:mysqlRows
|
||||
mc statement.go /^ mc *mysqlConn$/;" m struct:mysqlStmt
|
||||
mc transaction.go /^ mc *mysqlConn$/;" m struct:mysqlTx
|
||||
minProtocolVersion const.go /^ minProtocolVersion byte = 10$/;" c
|
||||
mustExec driver_test.go /^func (dbt *DBTest) mustExec(query string, args ...interface{}) (res sql.Result) {$/;" f
|
||||
mustQuery driver_test.go /^func (dbt *DBTest) mustQuery(query string, args ...interface{}) (rows *sql.Rows) {$/;" f
|
||||
myRnd utils.go /^type myRnd struct {$/;" s
|
||||
myRndMaxVal utils.go /^const myRndMaxVal = 0x3FFFFFFF$/;" c
|
||||
mysql appengine.go /^package mysql$/;" p
|
||||
mysql benchmark_test.go /^package mysql$/;" p
|
||||
mysql buffer.go /^package mysql$/;" p
|
||||
mysql collations.go /^package mysql$/;" p
|
||||
mysql connection.go /^package mysql$/;" p
|
||||
mysql const.go /^package mysql$/;" p
|
||||
mysql driver.go /^package mysql$/;" p
|
||||
mysql driver_test.go /^package mysql$/;" p
|
||||
mysql errors.go /^package mysql$/;" p
|
||||
mysql errors_test.go /^package mysql$/;" p
|
||||
mysql infile.go /^package mysql$/;" p
|
||||
mysql packets.go /^package mysql$/;" p
|
||||
mysql result.go /^package mysql$/;" p
|
||||
mysql rows.go /^package mysql$/;" p
|
||||
mysql statement.go /^package mysql$/;" p
|
||||
mysql transaction.go /^package mysql$/;" p
|
||||
mysql utils.go /^package mysql$/;" p
|
||||
mysql utils_test.go /^package mysql$/;" p
|
||||
mysqlConn connection.go /^type mysqlConn struct {$/;" s
|
||||
mysqlField rows.go /^type mysqlField struct {$/;" s
|
||||
mysqlResult result.go /^type mysqlResult struct {$/;" s
|
||||
mysqlRows rows.go /^type mysqlRows struct {$/;" s
|
||||
mysqlStmt statement.go /^type mysqlStmt struct {$/;" s
|
||||
mysqlTx transaction.go /^type mysqlTx struct {$/;" s
|
||||
name rows.go /^ name string$/;" m struct:mysqlField
|
||||
net connection.go /^ net string$/;" m struct:config
|
||||
netAddr driver_test.go /^ netAddr string$/;" v
|
||||
netConn connection.go /^ netConn net.Conn$/;" m struct:mysqlConn
|
||||
newBuffer buffer.go /^func newBuffer(rd io.Reader) buffer {$/;" f
|
||||
newMyRnd utils.go /^func newMyRnd(seed1, seed2 uint32) *myRnd {$/;" f
|
||||
paramCount statement.go /^ paramCount int$/;" m struct:mysqlStmt
|
||||
params connection.go /^ params map[string]string$/;" m struct:config
|
||||
parseBinaryDateTime utils.go /^func parseBinaryDateTime(num uint64, data []byte, loc *time.Location) (driver.Value, error) {$/;" f
|
||||
parseDSN utils.go /^func parseDSN(dsn string) (cfg *config, err error) {$/;" f
|
||||
parseDSNParams utils.go /^func parseDSNParams(cfg *config, params string) (err error) {$/;" f
|
||||
parseDateTime utils.go /^func parseDateTime(str string, loc *time.Location) (t time.Time, err error) {$/;" f
|
||||
parseTime connection.go /^ parseTime bool$/;" m struct:mysqlConn
|
||||
pass driver_test.go /^ pass string$/;" v
|
||||
passwd connection.go /^ passwd string$/;" m struct:config
|
||||
prot driver_test.go /^ prot string$/;" v
|
||||
pwHash utils.go /^func pwHash(password []byte) (result [2]uint32) {$/;" f
|
||||
rd buffer.go /^ rd io.Reader$/;" m struct:buffer
|
||||
readBool utils.go /^func readBool(input string) (value bool, valid bool) {$/;" f
|
||||
readColumns packets.go /^func (mc *mysqlConn) readColumns(count int) ([]mysqlField, error) {$/;" f
|
||||
readInitPacket packets.go /^func (mc *mysqlConn) readInitPacket() ([]byte, error) {$/;" f
|
||||
readLengthEncodedInteger utils.go /^func readLengthEncodedInteger(b []byte) (uint64, bool, int) {$/;" f
|
||||
readLengthEncodedString utils.go /^func readLengthEncodedString(b []byte) ([]byte, bool, int, error) {$/;" f
|
||||
readNext buffer.go /^func (b *buffer) readNext(need int) ([]byte, error) {$/;" f
|
||||
readPacket packets.go /^func (mc *mysqlConn) readPacket() ([]byte, error) {$/;" f
|
||||
readPrepareResultPacket packets.go /^func (stmt *mysqlStmt) readPrepareResultPacket() (uint16, error) {$/;" f
|
||||
readResultOK packets.go /^func (mc *mysqlConn) readResultOK() error {$/;" f
|
||||
readResultSetHeaderPacket packets.go /^func (mc *mysqlConn) readResultSetHeaderPacket() (int, error) {$/;" f
|
||||
readRow packets.go /^func (rows *binaryRows) readRow(dest []driver.Value) error {$/;" f
|
||||
readRow packets.go /^func (rows *textRows) readRow(dest []driver.Value) error {$/;" f
|
||||
readUntilEOF packets.go /^func (mc *mysqlConn) readUntilEOF() error {$/;" f
|
||||
readerRegister infile.go /^ readerRegister map[string]func() io.Reader$/;" v
|
||||
roundtripSample benchmark_test.go /^var roundtripSample []byte$/;" v
|
||||
run driver_test.go /^func (t timeTest) run(dbt *DBTest, dbtype, tlayout string, mode timeMode) {$/;" f
|
||||
runTests driver_test.go /^func runTests(t *testing.T, dsn string, tests ...func(dbt *DBTest)) {$/;" f
|
||||
s driver_test.go /^ s string \/\/ leading "!": do not use t as value in queries$/;" m struct:timeTest
|
||||
sDate driver_test.go /^ sDate = "2012-06-14"$/;" v
|
||||
sDate0 driver_test.go /^ sDate0 = "0000-00-00"$/;" v
|
||||
sDateTime driver_test.go /^ sDateTime = "2011-11-20 21:27:37"$/;" v
|
||||
sDateTime0 driver_test.go /^ sDateTime0 = "0000-00-00 00:00:00"$/;" v
|
||||
scrambleOldPassword utils.go /^func scrambleOldPassword(scramble, password []byte) []byte {$/;" f
|
||||
scramblePassword utils.go /^func scramblePassword(scramble, password []byte) []byte {$/;" f
|
||||
seed1 utils.go /^ seed1, seed2 uint32$/;" m struct:myRnd
|
||||
seed2 utils.go /^ seed1, seed2 uint32$/;" m struct:myRnd
|
||||
sequence connection.go /^ sequence uint8$/;" m struct:mysqlConn
|
||||
skipLengthEncodedString utils.go /^func skipLengthEncodedString(b []byte) (int, error) {$/;" f
|
||||
strict connection.go /^ strict bool$/;" m struct:mysqlConn
|
||||
stringToInt utils.go /^func stringToInt(b []byte) int {$/;" f
|
||||
t driver_test.go /^ t time.Time$/;" m struct:timeTest
|
||||
tDate driver_test.go /^ tDate = time.Date(2012, 6, 14, 0, 0, 0, 0, time.UTC)$/;" v
|
||||
tDate0 driver_test.go /^ tDate0 = time.Time{}$/;" v
|
||||
tDateTime driver_test.go /^ tDateTime = time.Date(2011, 11, 20, 21, 27, 37, 0, time.UTC)$/;" v
|
||||
tableName rows.go /^ tableName string$/;" m struct:mysqlField
|
||||
takeBuffer buffer.go /^func (b *buffer) takeBuffer(length int) []byte {$/;" f
|
||||
takeCompleteBuffer buffer.go /^func (b *buffer) takeCompleteBuffer() []byte {$/;" f
|
||||
takeSmallBuffer buffer.go /^func (b *buffer) takeSmallBuffer(length int) []byte {$/;" f
|
||||
testDSNs utils_test.go /^var testDSNs = []struct {$/;" v
|
||||
tests driver_test.go /^ tests []timeTest$/;" m struct:timeTests
|
||||
textRows rows.go /^type textRows struct {$/;" s
|
||||
textString driver_test.go /^ textString$/;" c
|
||||
timeFormat const.go /^ timeFormat = "2006-01-02 15:04:05.999999"$/;" c
|
||||
timeMode driver_test.go /^type timeMode byte$/;" t
|
||||
timeTest driver_test.go /^type timeTest struct {$/;" s
|
||||
timeTests driver_test.go /^type timeTests struct {$/;" s
|
||||
timeout connection.go /^ timeout time.Duration$/;" m struct:config
|
||||
tlayout driver_test.go /^ tlayout string$/;" m struct:timeTests
|
||||
tls connection.go /^ tls *tls.Config$/;" m struct:config
|
||||
tlsConfigRegister utils.go /^ tlsConfigRegister map[string]*tls.Config \/\/ Register for custom tls.Configs$/;" v
|
||||
uint64ToBytes utils.go /^func uint64ToBytes(n uint64) []byte {$/;" f
|
||||
uint64ToString utils.go /^func uint64ToString(n uint64) []byte {$/;" f
|
||||
user connection.go /^ user string$/;" m struct:config
|
||||
user driver_test.go /^ user string$/;" v
|
||||
writeAuthPacket packets.go /^func (mc *mysqlConn) writeAuthPacket(cipher []byte) error {$/;" f
|
||||
writeCommandLongData packets.go /^func (stmt *mysqlStmt) writeCommandLongData(paramID int, arg []byte) error {$/;" f
|
||||
writeCommandPacket packets.go /^func (mc *mysqlConn) writeCommandPacket(command byte) error {$/;" f
|
||||
writeCommandPacketStr packets.go /^func (mc *mysqlConn) writeCommandPacketStr(command byte, arg string) error {$/;" f
|
||||
writeCommandPacketUint32 packets.go /^func (mc *mysqlConn) writeCommandPacketUint32(command byte, arg uint32) error {$/;" f
|
||||
writeExecutePacket packets.go /^func (stmt *mysqlStmt) writeExecutePacket(args []driver.Value) error {$/;" f
|
||||
writeOldAuthPacket packets.go /^func (mc *mysqlConn) writeOldAuthPacket(cipher []byte) error {$/;" f
|
||||
writePacket packets.go /^func (mc *mysqlConn) writePacket(data []byte) error {$/;" f
|
||||
zeroDateTime utils.go /^var zeroDateTime = []byte("0000-00-00 00:00:00.000000")$/;" v
|
Loading…
Reference in New Issue