Skip to content

Commit 29397fb

Browse files
committed
remove TODO
1 parent fd4950f commit 29397fb

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

internal/query/conn/conn.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,42 +45,34 @@ func (c *Conn) ID() string {
4545
}
4646

4747
func (c *Conn) IsValid() bool {
48-
//TODO implement me
4948
panic("implement me")
5049
}
5150

5251
func (c *Conn) CheckNamedValue(value *driver.NamedValue) error {
53-
//TODO implement me
5452
panic("implement me")
5553
}
5654

5755
func (c *Conn) Ping(ctx context.Context) error {
58-
//TODO implement me
5956
panic("implement me")
6057
}
6158

6259
func (c *Conn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
63-
//TODO implement me
6460
panic("implement me")
6561
}
6662

6763
func (c *Conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
68-
//TODO implement me
6964
panic("implement me")
7065
}
7166

7267
func (c *Conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
73-
//TODO implement me
7468
panic("implement me")
7569
}
7670

7771
func (c *Conn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
78-
//TODO implement me
7972
panic("implement me")
8073
}
8174

8275
func (c *Conn) Prepare(query string) (driver.Stmt, error) {
83-
//TODO implement me
8476
panic("implement me")
8577
}
8678

@@ -117,12 +109,10 @@ func (c *Conn) Close() (finalErr error) {
117109
}
118110

119111
func (c *Conn) Begin() (driver.Tx, error) {
120-
//TODO implement me
121112
panic("implement me")
122113
}
123114

124115
func (c *Conn) LastUsage() time.Time {
125-
//TODO implement me
126116
panic("implement me")
127117
}
128118

sql.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,6 @@ func WithDefaultScanQueryOptions(opts ...options.ExecuteScanQueryOption) Connect
139139
return xsql.WithTableOptions(tableSql.WithScanOpts(opts...))
140140
}
141141

142-
// overQueryService is an option for switch database/sql driver implementation from default to over query service
143-
//
144-
// TODO: Make public when ready
145-
func overQueryService() ConnectorOption { //nolint:unused
146-
return xsql.OverQueryService()
147-
}
148-
149142
func WithDatabaseSQLTrace(
150143
t trace.DatabaseSQL, //nolint:gocritic
151144
opts ...trace.DatabaseSQLComposeOption,

0 commit comments

Comments
 (0)