Skip to content

[ci] Formatting #3474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mvn/settings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright 2009-2024 the original author or authors.
Copyright 2009-2025 the original author or authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/site/ja/xdoc/dynamic-sql.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright 2009-2022 the original author or authors.
Copyright 2009-2025 the original author or authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -49,7 +49,7 @@ INSERT INTO comment (id,post_id,name,comment) VALUES (3,3,'rider','I prefer moto
-- 4 5 6 7

INSERT INTO node (id, parent_id) VALUES (1,null);
INSERT INTO node (id, parent_id) VALUES (2,1);
INSERT INTO node (id, parent_id) VALUES (2,1);
INSERT INTO node (id, parent_id) VALUES (3,1);
INSERT INTO node (id, parent_id) VALUES (4,2);
INSERT INTO node (id, parent_id) VALUES (5,2);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
--

-- ----------------------------
-- Table structure for role
-- Table structure for role
-- ----------------------------
CREATE TABLE role (
id int,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
--

-- ----------------------------
-- Table structure for role
-- Table structure for role
-- ----------------------------
CREATE TABLE role (
id int,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -22,5 +22,5 @@ create table person(
lastname varchar(20)
);

insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');
insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -22,5 +22,5 @@ create table person(
lastname varchar(20)
);

insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');
insert into person(id, firstname, lastname) values (1, 'Jane', 'Doe');
insert into person(id, firstname, lastname) values (2, 'John', 'Smith');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,7 @@
drop table properties if exists;

create table properties (
item_id int,
property_id int,
item_id int,
property_id int,
value varchar(20)
);
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,7 @@
drop table if exists contact;
drop table if exists person;
create table person (
id int,
id int,
name varchar(32),
primary key (id)
);
Expand All @@ -26,9 +26,9 @@ insert into person (id, name) values (1, 'John');
insert into person (id, name) values (2, 'Rebecca');

create table contact (
id int,
address varchar(100),
phone varchar(32),
id int,
address varchar(100),
phone varchar(32),
person_id int,
foreign key (person_id) references person(id)
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,5 +27,5 @@ create table country(
name varchar(20)
);

insert into person (id, name) values (1, 'Jane'), (2, 'John');
insert into country (id, name) values (1, 'Japan'), (2, 'New Zealand');
insert into person (id, name) values (1, 'Jane'), (2, 'John');
insert into country (id, name) values (1, 'Japan'), (2, 'New Zealand');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -22,11 +22,11 @@
DECLARE result1 CURSOR FOR
SELECT * FROM order_detail
FOR READ ONLY ;

DECLARE result2 CURSOR FOR
SELECT * FROM order_header
FOR READ ONLY ;

OPEN result1 ;
OPEN result2 ;
END;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,7 @@
INSERT INTO order_header(order_id, cust_name)
VALUES (2, 'Barney');
INSERT INTO order_header(order_id, cust_name)
VALUES (3, 'Homer');
VALUES (3, 'Homer');

INSERT INTO order_detail(order_id, line_number, quantity, item_description)
VALUES (1, 1, 1, 'Pen');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,7 +27,7 @@ create table items (
owner int,
name varchar(20)
);

insert into persons (id, name) values (1, 'grandma');
insert into persons (id, name) values (2, 'sister');
insert into persons (id, name) values (3, 'brother');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2023 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -17,18 +17,18 @@
DROP TABLE parent if exists;
DROP TABLE child if exists;
create table parent(
id integer,
id integer,
value varchar(20)
);

create table child(
id integer,
id integer,
value varchar(20)
);

create table parent_child(
idparent integer,
idchild_from integer,
idparent integer,
idchild_from integer,
idchild_to integer
);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,7 @@ CREATE TABLE mbtest.users (
name character varying(30)
);

INSERT INTO mbtest.users (name) values
INSERT INTO mbtest.users (name) values
('Jimmy');


Expand All @@ -32,5 +32,5 @@ CREATE TABLE mbtest.sections (
name character varying(30)
);

INSERT INTO mbtest.sections (section_id, name) values
INSERT INTO mbtest.sections (section_id, name) values
(1, 'Section 1');
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,7 @@
drop table prop if exists;

create table prop (
id int,
id int,
val varchar(20),
url varchar(32)
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -24,7 +24,7 @@ create table users (
roundingMode int
);

insert into users (id, name, funkyNumber, roundingMode)
insert into users (id, name, funkyNumber, roundingMode)
values(1, 'User1', 123456789.9876543212345678987654321, 0);


Expand All @@ -35,6 +35,6 @@ create table users2 (
roundingMode varchar(12)
);

insert into users2 (id, name, funkyNumber, roundingMode)
insert into users2 (id, name, funkyNumber, roundingMode)
values(1, 'User1', 123456789.9876543212345678987654321, 'UP');

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand All @@ -17,18 +17,18 @@
drop table if exists person;
create table person (id int, nr_department int);

insert into person (id, nr_department)
insert into person (id, nr_department)
values (1, 1);

drop table if exists productattribute;
create table productattribute (nr_id int);

insert into productattribute(nr_id)
insert into productattribute(nr_id)
values (1);

drop table if exists department;
create table department (nr_id int,nr_attribute int,person int);

insert into department(nr_id,nr_attribute,person)
insert into department(nr_id,nr_attribute,person)
values (1,1,1);

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--
-- Copyright 2009-2022 the original author or authors.
-- Copyright 2009-2025 the original author or authors.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ go

create procedure sptest.adder(in addend1 integer, in addend2 integer, out theSum integer)
begin atomic
set theSum = addend1 + addend2;
set theSum = addend1 + addend2;
end
go

Expand Down Expand Up @@ -145,7 +145,7 @@ go

create procedure sptest.echoDate(in inputDate date, out outputDate date)
begin atomic
set outputDate = inputDate;
set outputDate = inputDate;
end
go

Expand Down