Changeset: 420b7073860c for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/420b7073860c Modified Files: sql/test/Users/Tests/create_user_options.test Branch: Sep2022 Log Message:
Make use of the new capability (...) to partially match an error msg text (thanks Sjoerd), else it was not possible to get it to be accepted. diffs (16 lines): diff --git a/sql/test/Users/Tests/create_user_options.test b/sql/test/Users/Tests/create_user_options.test --- a/sql/test/Users/Tests/create_user_options.test +++ b/sql/test/Users/Tests/create_user_options.test @@ -1,10 +1,10 @@ -- test syntax: CREATE USER user_name WITH [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'user_password' NAME 'full name' -- [SCHEMA schema_name] [SCHEMA PATH string] [MAX_MEMORY bytes] [MAX_WORKERS count] [OPTIMIZER optimizer] [DEFAULT ROLE ident] -statement error 42000!syntax error in: "create user testu01;" +statement error 42000!syntax error in: "create user testu01... create user testu01; -statement error 42000!syntax error in: "create user testu02 with password 'testu02';" +statement error 42000!syntax error in: "create user testu02 with password 'testu02'... create user testu02 with password 'testu02'; statement ok _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
