Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
041e9de6
Commit
041e9de6
authored
Mar 30, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wording: don't prohibit
parent
689f83d0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
mysql-test/suite/versioning/r/alter.result
mysql-test/suite/versioning/r/alter.result
+4
-4
mysql-test/suite/versioning/r/create.result
mysql-test/suite/versioning/r/create.result
+1
-1
mysql-test/suite/versioning/r/debug.result
mysql-test/suite/versioning/r/debug.result
+1
-1
mysql-test/suite/versioning/r/partition.result
mysql-test/suite/versioning/r/partition.result
+1
-1
sql/share/errmsg-utf8.txt
sql/share/errmsg-utf8.txt
+3
-3
No files found.
mysql-test/suite/versioning/r/alter.result
View file @
041e9de6
...
...
@@ -20,7 +20,7 @@ t CREATE TABLE `t` (
alter table t add column y int;
ERROR HY000: Not allowed for system-versioned `test`.`t`. Change @@system_versioning_alter_history to proceed with ALTER.
alter table t engine innodb;
ERROR HY000: Not allowed for system-versioned `test`.`t`. Change to/from native system versioning engine is
prohibi
ted.
ERROR HY000: Not allowed for system-versioned `test`.`t`. Change to/from native system versioning engine is
not suppor
ted.
alter table t drop system versioning;
show create table t;
Table Create Table
...
...
@@ -440,11 +440,11 @@ alter table t1 engine=myisam;
# MDEV-14692 crash in MDL_context::upgrade_shared_lock()
create or replace temporary table t (a int);
alter table t change column if exists b c bigint unsigned generated always as row start;
ERROR HY000:
System versioning prohibited for TEMPORARY tables
ERROR HY000:
TEMPORARY tables do not support system versioning
alter table t change column if exists b c bigint unsigned generated always as row end;
ERROR HY000:
System versioning prohibited for TEMPORARY tables
ERROR HY000:
TEMPORARY tables do not support system versioning
alter table t add system versioning;
ERROR HY000:
System versioning prohibited for TEMPORARY tables
ERROR HY000:
TEMPORARY tables do not support system versioning
drop table t;
# MDEV-14744 trx_id-based and transaction-based mixup in assertion
create or replace table t (c text) engine=innodb with system versioning;
...
...
mysql-test/suite/versioning/r/create.result
View file @
041e9de6
...
...
@@ -403,7 +403,7 @@ t3 CREATE TABLE `t3` (
) ENGINE=NON_DEFAULT_ENGINE DEFAULT CHARSET=latin1 WITH SYSTEM VERSIONING
## Errors
create or replace temporary table t (x28 int) with system versioning;
ERROR HY000:
System versioning prohibited for TEMPORARY tables
ERROR HY000:
TEMPORARY tables do not support system versioning
create or replace table t1 (
x29 int unsigned,
Sys_start0 timestamp(6) as row start invisible,
...
...
mysql-test/suite/versioning/r/debug.result
View file @
041e9de6
...
...
@@ -5,7 +5,7 @@ t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
create temporary table tt1 (a int) with system versioning;
ERROR HY000:
System versioning prohibited for TEMPORARY tables
ERROR HY000:
TEMPORARY tables do not support system versioning
set @old_dbug=@@global.debug_dbug;
set global debug_dbug='+d,sysvers_force';
create table t2 (a int);
...
...
mysql-test/suite/versioning/r/partition.result
View file @
041e9de6
...
...
@@ -36,7 +36,7 @@ x
# Engine change native <-> non-native versioning prohibited
create or replace table t1 (i int) engine=DEFAULT_ENGINE with system versioning partition by hash(i);
alter table t1 engine=NON_DEFAULT_ENGINE;
ERROR HY000: Not allowed for system-versioned `test`.`t1`. Change to/from native system versioning engine is
prohibi
ted.
ERROR HY000: Not allowed for system-versioned `test`.`t1`. Change to/from native system versioning engine is
not suppor
ted.
## CREATE TABLE
create or replace table t1 (x int)
partition by system_time (
...
...
sql/share/errmsg-utf8.txt
View file @
041e9de6
...
...
@@ -7854,10 +7854,10 @@ ER_VERS_ALTER_NOT_ALLOWED
eng "Not allowed for system-versioned %`s.%`s. Change @@system_versioning_alter_history to proceed with ALTER."
ER_VERS_ALTER_ENGINE_PROHIBITED
eng "Not allowed for system-versioned %`s.%`s. Change to/from native system versioning engine is
prohibi
ted."
eng "Not allowed for system-versioned %`s.%`s. Change to/from native system versioning engine is
not suppor
ted."
ER_VERS_RANGE_PROHIBITED
eng "SYSTEM_TIME range selector is
prohibit
ed"
eng "SYSTEM_TIME range selector is
not allow
ed"
ER_UNUSED_26
eng "You should never see it"
...
...
@@ -7905,7 +7905,7 @@ ER_UNUSED_24
eng "You should never see it"
ER_VERS_TEMPORARY
eng "
System versioning prohibited for TEMPORARY tables
"
eng "
TEMPORARY tables do not support system versioning
"
ER_VERS_NOT_SUPPORTED
eng "%s is not supported for %s system-versioned tables"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment