calcite-avatica-go git commit: Fix typo

2018-04-27 Thread francischuang
Repository: calcite-avatica-go
Updated Branches:
  refs/heads/master 7676754fb -> 34065daad


Fix typo


Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/commit/34065daa
Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/tree/34065daa
Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/diff/34065daa

Branch: refs/heads/master
Commit: 34065daad96f44dd0d4b65021954efbbe6ae8432
Parents: 7676754
Author: Francis Chuang 
Authored: Fri Apr 27 22:13:43 2018 +1000
Committer: Francis Chuang 
Committed: Fri Apr 27 22:13:43 2018 +1000

--
 site/_docs/go_client_reference.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/34065daa/site/_docs/go_client_reference.md
--
diff --git a/site/_docs/go_client_reference.md 
b/site/_docs/go_client_reference.md
index 2ce05f5..58f8df0 100644
--- a/site/_docs/go_client_reference.md
+++ b/site/_docs/go_client_reference.md
@@ -180,7 +180,7 @@ We recommend using `UTC`, which is the default value of 
`location`.
 The Go client comes with support for retrieving the error code when an error 
occurs. This is extremely useful when
 you want to take specific action when a particular type of error occurs.
 
-If the error returned is a ResponseError, the `Name`field on the error will 
return the appropriate
+If the error returned is a ResponseError, the `Name` field on the error will 
return the appropriate
 Apache Phoenix error code:
 
 {% highlight go %}



calcite-avatica-go git commit: Fix typo

2018-04-22 Thread francischuang
Repository: calcite-avatica-go
Updated Branches:
  refs/heads/master 63c1e1c07 -> 768820254


Fix typo


Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/commit/76882025
Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/tree/76882025
Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/diff/76882025

Branch: refs/heads/master
Commit: 768820254f88a81362193000df90fbe4319088fa
Parents: 63c1e1c
Author: Francis Chuang 
Authored: Mon Apr 23 11:25:54 2018 +1000
Committer: Francis Chuang 
Committed: Mon Apr 23 11:25:54 2018 +1000

--
 dsn.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/76882025/dsn.go
--
diff --git a/dsn.go b/dsn.go
index ae88767..c836b9d 100644
--- a/dsn.go
+++ b/dsn.go
@@ -188,7 +188,7 @@ func ParseDSN(dsn string) (*Config, error) {
}
 
if (principal != "" || keytab != "" || krb5Conf != "") 
&& krb5CredentialCache != "" {
-   return nil, fmt.Errorf("ambigious configuration 
for SPNEGO authentication: use either pricipal, keytab and krb5Conf or 
krb5TicketCache")
+   return nil, fmt.Errorf("ambigious configuration 
for SPNEGO authentication: use either principal, keytab and krb5Conf or 
krb5TicketCache")
}
 
if principal != "" {