File: dd_is_gcov.result

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (33 lines) | stat: -rw-r--r-- 1,464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# A) Test code handling virtual columns in mysqldump tool.
#
SET timestamp=1;
CREATE DATABASE test1;
use test1;
CREATE TABLE t1 (a1 INTEGER,
a2 INTEGER GENERATED ALWAYS AS (a1 * 2) STORED,
a3 INTEGER GENERATED ALWAYS AS (a1 * 3) VIRTUAL,
KEY (a1) );
DROP TABLE IF EXISTS `t1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `t1` (
  `a1` int DEFAULT NULL,
  `a2` int GENERATED ALWAYS AS ((`a1` * 2)) STORED,
  `a3` int GENERATED ALWAYS AS ((`a1` * 3)) VIRTUAL,
  KEY `a1` (`a1`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
<?xml version="1.0"?>
<mysqldump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<database name="test1">
DROP TABLE IF EXISTS `t1`;
	<table_structure name="t1">
		<field Field="a1" Type="int" Null="YES" Key="MUL" Extra="" Comment="" />
		<key Table="t1" Non_unique="1" Key_name="a1" Seq_in_index="1" Column_name="a1" Collation="A" Cardinality="0" Null="YES" Index_type="BTREE" Comment="" Index_comment="" Visible="YES" />
		<options Name="t1" Engine="InnoDB" Version="10" Row_format="Dynamic" Rows="0" Avg_row_length="0" Data_length="16384" Max_data_length="0" Index_length="16384" Data_free="0" Create_time="1970-01-01 00:00:01" Collation="utf8mb4_0900_ai_ci" Create_options="" Comment="" />
	</table_structure>
</database>
</mysqldump>
DROP TABLE t1;
DROP DATABASE test1;