mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-07 00:39:44 -06:00
[auto-bump] [no-release-notes] dependency by jennifersp (#6739)
This commit is contained in:
@@ -59,7 +59,7 @@ require (
|
||||
github.com/cespare/xxhash v1.1.0
|
||||
github.com/creasty/defaults v1.6.0
|
||||
github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2
|
||||
github.com/dolthub/go-mysql-server v0.17.1-0.20230927003048-44ab355c2753
|
||||
github.com/dolthub/go-mysql-server v0.17.1-0.20230928193518-53271de94359
|
||||
github.com/dolthub/swiss v0.1.0
|
||||
github.com/goccy/go-json v0.10.2
|
||||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
||||
|
||||
@@ -180,8 +180,8 @@ github.com/dolthub/fslock v0.0.3 h1:iLMpUIvJKMKm92+N1fmHVdxJP5NdyDK5bK7z7Ba2s2U=
|
||||
github.com/dolthub/fslock v0.0.3/go.mod h1:QWql+P17oAAMLnL4HGB5tiovtDuAjdDTPbuqx7bYfa0=
|
||||
github.com/dolthub/go-icu-regex v0.0.0-20230524105445-af7e7991c97e h1:kPsT4a47cw1+y/N5SSCkma7FhAPw7KeGmD6c9PBZW9Y=
|
||||
github.com/dolthub/go-icu-regex v0.0.0-20230524105445-af7e7991c97e/go.mod h1:KPUcpx070QOfJK1gNe0zx4pA5sicIK1GMikIGLKC168=
|
||||
github.com/dolthub/go-mysql-server v0.17.1-0.20230927003048-44ab355c2753 h1:68B9w6CNK+fQQ73rCqkrLaPuWg69TGCE8Kyv9hsZLiY=
|
||||
github.com/dolthub/go-mysql-server v0.17.1-0.20230927003048-44ab355c2753/go.mod h1:C0Q8nJKIEnCYXx+ot9F2V7bg7xz5wj+Z1o1BDyNnP7E=
|
||||
github.com/dolthub/go-mysql-server v0.17.1-0.20230928193518-53271de94359 h1:f+JtDU9DtGDNhOQ3VqqyFvC7slgIaJ31XifZT/eKZU4=
|
||||
github.com/dolthub/go-mysql-server v0.17.1-0.20230928193518-53271de94359/go.mod h1:C0Q8nJKIEnCYXx+ot9F2V7bg7xz5wj+Z1o1BDyNnP7E=
|
||||
github.com/dolthub/ishell v0.0.0-20221214210346-d7db0b066488 h1:0HHu0GWJH0N6a6keStrHhUAK5/o9LVfkh44pvsV4514=
|
||||
github.com/dolthub/ishell v0.0.0-20221214210346-d7db0b066488/go.mod h1:ehexgi1mPxRTk0Mok/pADALuHbvATulTh6gzr7NzZto=
|
||||
github.com/dolthub/jsonpath v0.0.2-0.20230525180605-8dc13778fd72 h1:NfWmngMi1CYUWU4Ix8wM+USEhjc+mhPlT9JUR/anvbQ=
|
||||
|
||||
@@ -70,15 +70,15 @@ var ViewsWithAsOfScriptTest = queries.ScriptTest{
|
||||
{
|
||||
// At this point table t1 doesn't exist yet, so the view should return an error
|
||||
Query: "select * from v1 as of 'HEAD~3'",
|
||||
ExpectedErrStr: "table not found: t2, maybe you mean t1?",
|
||||
ExpectedErrStr: "View 'mydb.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them",
|
||||
},
|
||||
{
|
||||
Query: "select * from v1 as of 'HEAD~4'",
|
||||
ExpectedErrStr: "table not found: t2, maybe you mean t1?",
|
||||
ExpectedErrStr: "View 'mydb.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them",
|
||||
},
|
||||
{
|
||||
Query: "select * from v1 as of 'HEAD~5'",
|
||||
ExpectedErrStr: "table not found: t1",
|
||||
ExpectedErrStr: "View 'mydb.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them",
|
||||
},
|
||||
{
|
||||
Query: "select * from v1 as of HEAD",
|
||||
|
||||
@@ -140,7 +140,7 @@ SQL
|
||||
@test "blame: returns an error when the table is not found in the given revision" {
|
||||
run dolt blame HEAD~4 blame_test
|
||||
[ "$status" -eq 1 ]
|
||||
[[ "$output" = "table not found: dolt_diff_blame_test" ]] || false
|
||||
[[ "$output" =~ "View 'dolt_repo_$$.dolt_blame_blame_test' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them" ]] || false
|
||||
}
|
||||
|
||||
@test "blame: pk ordered output" {
|
||||
|
||||
@@ -292,7 +292,7 @@ SQL
|
||||
[ "$status" -eq 0 ]
|
||||
run dolt sql -q 'select * from all_users'
|
||||
[ "$status" -eq 1 ]
|
||||
[[ "${lines[0]}" =~ "table not found: users" ]] || false
|
||||
[[ "${lines[0]}" =~ "View 'dolt_repo_$$.all_users' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them" ]] || false
|
||||
run dolt sql -q 'drop view all_users'
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user