Changeset: d8deae162302 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=d8deae162302 Modified Files: clients/Tests/MAL-signatures.stable.out clients/Tests/MAL-signatures.stable.out.int128 clients/Tests/exports.stable.out Branch: remote_auth Log Message:
Approve new output for existing tests diffs (47 lines): diff --git a/clients/Tests/MAL-signatures.stable.out b/clients/Tests/MAL-signatures.stable.out --- a/clients/Tests/MAL-signatures.stable.out +++ b/clients/Tests/MAL-signatures.stable.out @@ -10768,6 +10768,7 @@ Ready. [ "remote", "bintype", "pattern remote.bintype():void ", "RMTbintype;", "print the binary type of this mserver5" ] [ "remote", "connect", "command remote.connect(uri:str, user:str, passwd:str):str ", "RMTconnect;", "returns a newly created connection for uri, using user name and password" ] [ "remote", "connect", "command remote.connect(uri:str, user:str, passwd:str, scen:str):str ", "RMTconnectScen;", "returns a newly created connection for uri, using user name, password and scenario" ] +[ "remote", "connect", "pattern remote.connect(table:str, schen:str):str ", "RMTconnectTable;", "return a newly created connection for a table. username and password should be in the vault" ] [ "remote", "disconnect", "command remote.disconnect(conn:str):void ", "RMTdisconnect;", "disconnects the connection pointed to by handle (received from a call to connect()" ] [ "remote", "epilogue", "command remote.epilogue():void ", "RMTepilogue;", "release the resources held by the remote module" ] [ "remote", "exec", "pattern remote.exec(conn:str, mod:str, func:str):str ", "RMTexec;", "remotely executes <mod>.<func> and returns the handle to its result" ] diff --git a/clients/Tests/MAL-signatures.stable.out.int128 b/clients/Tests/MAL-signatures.stable.out.int128 --- a/clients/Tests/MAL-signatures.stable.out.int128 +++ b/clients/Tests/MAL-signatures.stable.out.int128 @@ -14979,6 +14979,7 @@ Ready. [ "remote", "bintype", "pattern remote.bintype():void ", "RMTbintype;", "print the binary type of this mserver5" ] [ "remote", "connect", "command remote.connect(uri:str, user:str, passwd:str):str ", "RMTconnect;", "returns a newly created connection for uri, using user name and password" ] [ "remote", "connect", "command remote.connect(uri:str, user:str, passwd:str, scen:str):str ", "RMTconnectScen;", "returns a newly created connection for uri, using user name, password and scenario" ] +[ "remote", "connect", "pattern remote.connect(table:str, schen:str):str ", "RMTconnectTable;", "return a newly created connection for a table. username and password should be in the vault" ] [ "remote", "disconnect", "command remote.disconnect(conn:str):void ", "RMTdisconnect;", "disconnects the connection pointed to by handle (received from a call to connect()" ] [ "remote", "epilogue", "command remote.epilogue():void ", "RMTepilogue;", "release the resources held by the remote module" ] [ "remote", "exec", "pattern remote.exec(conn:str, mod:str, func:str):str ", "RMTexec;", "remotely executes <mod>.<func> and returns the handle to its result" ] diff --git a/clients/Tests/exports.stable.out b/clients/Tests/exports.stable.out --- a/clients/Tests/exports.stable.out +++ b/clients/Tests/exports.stable.out @@ -739,11 +739,13 @@ str ALGunique1(bat *result, const bat *b str ALGunique2(bat *result, const bat *bid, const bat *sid); str ALGvariance(dbl *res, const bat *bid); str ALGvariancep(dbl *res, const bat *bid); +str AUTHaddRemoteTableCredentials(const char *local_table, const char *localuser, const char *uri, const char *remoteuser, const char *pass, bool pw_encrypted); str AUTHaddUser(oid *ret, Client c, const char *user, const char *pass); str AUTHchangePassword(Client c, const char *oldpass, const char *passwd); str AUTHchangeUsername(Client c, const char *olduser, const char *newuser); str AUTHcheckCredentials(oid *ret, Client c, const char *user, const char *passwd, const char *challenge, const char *algo); str AUTHgetPasswordHash(str *ret, Client c, const char *username); +str AUTHgetRemoteTableCredentials(const char *local_table, Client cntxt, str *uri, str *username, str *password); str AUTHgetUsername(str *ret, Client c); str AUTHgetUsers(BAT **ret1, BAT **ret2, Client c); str AUTHinitTables(const char *passwd); @@ -1645,6 +1647,7 @@ str RMTbincopyto(Client cntxt, MalBlkPtr str RMTbintype(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); str RMTconnect(str *ret, str *uri, str *user, str *passwd); str RMTconnectScen(str *ret, str *ouri, str *user, str *passwd, str *scen); +str RMTconnectTable(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); str RMTdisconnect(void *ret, str *conn); str RMTepilogue(void *ret); str RMTexec(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
