mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
SQL: error messages
remove unused error messages reword ER_VERS_SYS_FIELD_NOT_HIDDEN->ER_VERS_SYS_FIELD_EXISTS
This commit is contained in:
committed by
Aleksey Midenkov
parent
e6a7457653
commit
35b679b924
@ -17,64 +17,64 @@ a b b+0
|
||||
1 2 2
|
||||
3 4 4
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select * from t for system_time as of timestamp now(6);
|
||||
a b
|
||||
1 2
|
||||
3 4
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select count(*) from t for system_time as of timestamp now(6) group by b;
|
||||
count(*)
|
||||
1
|
||||
1
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select * from t for system_time as of timestamp now(6) order by b asc;
|
||||
a b
|
||||
1 2
|
||||
3 4
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select * from t for system_time as of timestamp now(6) order by b desc;
|
||||
a b
|
||||
3 4
|
||||
1 2
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select * from t for system_time as of timestamp now(6) group by a having a=2;
|
||||
a b
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select * from t for system_time as of timestamp now(6) group by b having b=2;
|
||||
a b
|
||||
1 2
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select a from t for system_time as of timestamp now(6) where b=2;
|
||||
a
|
||||
1
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select a from t for system_time as of timestamp now(6) where b=NULL;
|
||||
a
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select a from t for system_time as of timestamp now(6) where b is NULL;
|
||||
a
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select count(*), b from t for system_time as of timestamp now(6) group by b having b=NULL;
|
||||
count(*) b
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select a, b from t;
|
||||
a b
|
||||
1 2
|
||||
@ -89,9 +89,9 @@ a b
|
||||
1 2
|
||||
3 4
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
select * from t for system_time as of timestamp now(6) where b is NULL;
|
||||
a b
|
||||
Warnings:
|
||||
Note 4111 Non-versioned field `b` in historical query
|
||||
Note 4110 Non-versioned field `b` in historical query
|
||||
drop table t;
|
||||
|
Reference in New Issue
Block a user