Skip to content

Commit 63d037b

Browse files
authored
Fix #4413 and update copyright dates. (#4414)
1 parent ad40657 commit 63d037b

File tree

11 files changed

+36
-7
lines changed

11 files changed

+36
-7
lines changed

sql/mysql/Oracle/Antlr4ng/MySQLLexerBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2024, Oracle and/or its affiliates
2+
* Copyright © 2025, Oracle and/or its affiliates
33
*/
44

55
/* eslint-disable no-underscore-dangle */

sql/mysql/Oracle/Antlr4ng/MySQLParserBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2024, Oracle and/or its affiliates
2+
* Copyright © 2025, Oracle and/or its affiliates
33
*/
44

55
import { Parser, TokenStream } from "antlr4ng";

sql/mysql/Oracle/Antlr4ng/SqlMode.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright © 2025, Oracle and/or its affiliates
3+
*/
4+
5+
/* eslint-disable no-underscore-dangle */
6+
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */
7+
18
/** SQL modes that control parsing behavior. */
29
enum SqlMode {
310
NoMode,

sql/mysql/Oracle/Antlr4ng/SqlModes.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright © 2025, Oracle and/or its affiliates
3+
*/
4+
5+
/* eslint-disable no-underscore-dangle */
6+
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */
7+
18
/** SQL modes that control parsing behavior. */
29

310
import SqlMode from "./SqlMode.js";

sql/mysql/Oracle/MySQLLexer.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
lexer grammar MySQLLexer;
22

33
/*
4-
* Copyright © 2024, Oracle and/or its affiliates
4+
* Copyright © 2025, Oracle and/or its affiliates
55
*/
66

77
/*

sql/mysql/Oracle/MySQLParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parser grammar MySQLParser;
22

33
/*
4-
* Copyright © 2024, Oracle and/or its affiliates
4+
* Copyright © 2025, Oracle and/or its affiliates
55
*/
66

77
/*

sql/mysql/Oracle/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Includes updates to commit https://github.com/mysql/mysql-shell-plugins/commit/d
1212

1313
## License
1414

15-
Like all of Oracle's open source, this grammar is released under the GPLv2.
15+
* [BSD3](https://opensource.org/license/bsd-3-clause)
16+
* Copyright © 2025, Oracle and/or its affiliates
1617

1718
## Target Agnostic
1819

sql/mysql/Oracle/TypeScript/MySQLLexerBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2024, Oracle and/or its affiliates
2+
* Copyright © 2025, Oracle and/or its affiliates
33
*/
44

55
/* eslint-disable no-underscore-dangle */

sql/mysql/Oracle/TypeScript/MySQLParserBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2024, Oracle and/or its affiliates
2+
* Copyright © 2025, Oracle and/or its affiliates
33
*/
44

55
import { Parser, TokenStream } from "antlr4";

sql/mysql/Oracle/TypeScript/SqlMode.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright © 2025, Oracle and/or its affiliates
3+
*/
4+
5+
/* eslint-disable no-underscore-dangle */
6+
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */
7+
18
/** SQL modes that control parsing behavior. */
29
enum SqlMode {
310
NoMode,

0 commit comments

Comments
 (0)