Skip to content

Commit

Permalink
Merge pull request #17 from Ahine/master
Browse files Browse the repository at this point in the history
hotfix of variable naming issue
  • Loading branch information
hrbrmstr authored Apr 16, 2018
2 parents 4dd65ee + ff73ead commit b427dc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ Package: sergeant
Title: Tools to Transform and Query Data with 'Apache' 'Drill'
Version: 0.6.0
Authors@R: c(person("Bob", "Rudis", email = "[email protected]", role = c("aut", "cre")),
person("Edward", "Visel", email = "[email protected]", role = "ctb"))
person("Edward", "Visel", email = "[email protected]", role = "ctb"),
person("Andy", "Hine", email = "[email protected]", role = "ctb"))
Description: 'Apache Drill' is a low-latency distributed query engine designed to enable
data exploration and 'analytics' on both relational and non-relational 'datastores',
scaling to petabytes of data. Methods are provided that enable working with 'Apache'
Expand Down
2 changes: 1 addition & 1 deletion R/sergeant.r
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ drill_connection <- function(host=Sys.getenv("DRILL_HOST", "localhost"),

class(out) <- c("drill_conn", class(out))

if (user != "") auth_drill(ssl, host, port, username, password)
if (user != "") auth_drill(ssl, host, port, user, password)

out

Expand Down

0 comments on commit b427dc2

Please sign in to comment.