Skip to content

Commit c0a2ae0

Browse files
authored
Merge pull request #3474 from hazendaz/master
[ci] Formatting
2 parents ca7eba2 + e875070 commit c0a2ae0

File tree

19 files changed

+52
-52
lines changed

19 files changed

+52
-52
lines changed

.mvn/settings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2009-2024 the original author or authors.
4+
Copyright 2009-2025 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

src/site/ja/xdoc/dynamic-sql.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2009-2022 the original author or authors.
4+
Copyright 2009-2025 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

src/test/resources/org/apache/ibatis/databases/blog/blog-derby-dataload.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@ INSERT INTO comment (id,post_id,name,comment) VALUES (3,3,'rider','I prefer moto
4949
-- 4 5 6 7
5050

5151
INSERT INTO node (id, parent_id) VALUES (1,null);
52-
INSERT INTO node (id, parent_id) VALUES (2,1);
52+
INSERT INTO node (id, parent_id) VALUES (2,1);
5353
INSERT INTO node (id, parent_id) VALUES (3,1);
5454
INSERT INTO node (id, parent_id) VALUES (4,2);
5555
INSERT INTO node (id, parent_id) VALUES (5,2);

src/test/resources/org/apache/ibatis/submitted/annotion_many_one_add_columnprefix/CreateDB.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
--
1616

1717
-- ----------------------------
18-
-- Table structure for role
18+
-- Table structure for role
1919
-- ----------------------------
2020
CREATE TABLE role (
2121
id int,

src/test/resources/org/apache/ibatis/submitted/annotion_many_one_add_resultmapid/CreateDB.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
--
1616

1717
-- ----------------------------
18-
-- Table structure for role
18+
-- Table structure for role
1919
-- ----------------------------
2020
CREATE TABLE role (
2121
id int,

src/test/resources/org/apache/ibatis/submitted/blocking_cache/CreateDB.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -22,5 +22,5 @@ create table person(
2222
lastname varchar(20)
2323
);
2424

25-
insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
26-
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');
25+
insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
26+
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');

src/test/resources/org/apache/ibatis/submitted/cache/CreateDB.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -22,5 +22,5 @@ create table person(
2222
lastname varchar(20)
2323
);
2424

25-
insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
26-
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');
25+
insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
26+
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');

src/test/resources/org/apache/ibatis/submitted/complex_type/CreateDB.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
1717
drop table properties if exists;
1818

1919
create table properties (
20-
item_id int,
21-
property_id int,
20+
item_id int,
21+
property_id int,
2222
value varchar(20)
2323
);

src/test/resources/org/apache/ibatis/submitted/custom_collection_handling/CreateDB.sql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
1717
drop table if exists contact;
1818
drop table if exists person;
1919
create table person (
20-
id int,
20+
id int,
2121
name varchar(32),
2222
primary key (id)
2323
);
@@ -26,9 +26,9 @@ insert into person (id, name) values (1, 'John');
2626
insert into person (id, name) values (2, 'Rebecca');
2727

2828
create table contact (
29-
id int,
30-
address varchar(100),
31-
phone varchar(32),
29+
id int,
30+
address varchar(100),
31+
phone varchar(32),
3232
person_id int,
3333
foreign key (person_id) references person(id)
3434
);

src/test/resources/org/apache/ibatis/submitted/mapper_type_parameter/CreateDB.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- Copyright 2009-2022 the original author or authors.
2+
-- Copyright 2009-2025 the original author or authors.
33
--
44
-- Licensed under the Apache License, Version 2.0 (the "License");
55
-- you may not use this file except in compliance with the License.
@@ -27,5 +27,5 @@ create table country(
2727
name varchar(20)
2828
);
2929

30-
insert into person (id, name) values (1, 'Jane'), (2, 'John');
31-
insert into country (id, name) values (1, 'Japan'), (2, 'New Zealand');
30+
insert into person (id, name) values (1, 'Jane'), (2, 'John');
31+
insert into country (id, name) values (1, 'Japan'), (2, 'New Zealand');

0 commit comments

Comments
 (0)