-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add query settings interface #46
Changes from 4 commits
11cbaaf
d460cf2
90b0358
ef4aaae
c6e7bd7
c3e8a39
f7ef9b0
24883eb
3f54014
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,16 +8,26 @@ import ( | |
|
||
// register driver | ||
func init() { | ||
sql.Register("maxcompute", &Driver{}) | ||
sql.Register("maxcompute", &MaxcomputeDriver{}) | ||
} | ||
|
||
// impls database/sql/driver.Driver | ||
type Driver struct{} | ||
// MaxcomputeDriver impls database/sql/driver.Driver | ||
type MaxcomputeDriver struct { | ||
conn odpsConn | ||
} | ||
|
||
func (d Driver) Open(dsn string) (driver.Conn, error) { | ||
func (o MaxcomputeDriver) Open(dsn string) (driver.Conn, error) { | ||
cfg, err := ParseDSN(dsn) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &odpsConn{&http.Client{}, cfg}, nil | ||
o.conn = odpsConn{&http.Client{}, cfg, nil} | ||
return &o.conn, nil | ||
} | ||
|
||
// SetQuerySettings sets the global query settings. | ||
// TODO(Yancey1989): add the one-off query settings interface. | ||
func (o MaxcomputeDriver) SetQuerySettings(hints map[string]string) error { | ||
o.conn.hints = hints | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. deep copy or shallow copy? |
||
return nil | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,12 @@ func TestSQLOpen(t *testing.T) { | |
defer db.Close() | ||
a.NoError(err) | ||
} | ||
|
||
func TestQuerySettings(t *testing.T) { | ||
a := assert.New(t) | ||
db, err := sql.Open("maxcompute", cfg4test.FormatDSN()) | ||
a.NoError(err) | ||
db.Driver().(*MaxcomputeDriver).SetQuerySettings(map[string]string{"odps.sql.mapper.split.size": "16"}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this test verify the hints is effective? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shall we also test There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
No, it's not easy to test |
||
_, err = db.Query("SELECT * FROM gomaxcompute_test LIMIT;") | ||
a.NoError(err) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if it is reasonable to maintain a
conn
inside the driver.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's okay, we need to maintain the
settings
struct in the DB object and theDriver
struct can be exposed when we implement thesql.database
.