Skip to content

Commit

Permalink
Fix #4413 and update copyright dates. (#4414)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaby76 authored Feb 16, 2025
1 parent ad40657 commit 63d037b
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sql/mysql/Oracle/Antlr4ng/MySQLLexerBase.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2024, Oracle and/or its affiliates
* Copyright © 2025, Oracle and/or its affiliates
*/

/* eslint-disable no-underscore-dangle */
Expand Down
2 changes: 1 addition & 1 deletion sql/mysql/Oracle/Antlr4ng/MySQLParserBase.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2024, Oracle and/or its affiliates
* Copyright © 2025, Oracle and/or its affiliates
*/

import { Parser, TokenStream } from "antlr4ng";
Expand Down
7 changes: 7 additions & 0 deletions sql/mysql/Oracle/Antlr4ng/SqlMode.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright © 2025, Oracle and/or its affiliates
*/

/* eslint-disable no-underscore-dangle */
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */

/** SQL modes that control parsing behavior. */
enum SqlMode {
NoMode,
Expand Down
7 changes: 7 additions & 0 deletions sql/mysql/Oracle/Antlr4ng/SqlModes.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright © 2025, Oracle and/or its affiliates
*/

/* eslint-disable no-underscore-dangle */
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */

/** SQL modes that control parsing behavior. */

import SqlMode from "./SqlMode.js";
Expand Down
2 changes: 1 addition & 1 deletion sql/mysql/Oracle/MySQLLexer.g4
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lexer grammar MySQLLexer;

/*
* Copyright © 2024, Oracle and/or its affiliates
* Copyright © 2025, Oracle and/or its affiliates
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion sql/mysql/Oracle/MySQLParser.g4
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
parser grammar MySQLParser;

/*
* Copyright © 2024, Oracle and/or its affiliates
* Copyright © 2025, Oracle and/or its affiliates
*/

/*
Expand Down
3 changes: 2 additions & 1 deletion sql/mysql/Oracle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Includes updates to commit https://github.com/mysql/mysql-shell-plugins/commit/d

## License

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

## Target Agnostic

Expand Down
2 changes: 1 addition & 1 deletion sql/mysql/Oracle/TypeScript/MySQLLexerBase.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2024, Oracle and/or its affiliates
* Copyright © 2025, Oracle and/or its affiliates
*/

/* eslint-disable no-underscore-dangle */
Expand Down
2 changes: 1 addition & 1 deletion sql/mysql/Oracle/TypeScript/MySQLParserBase.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright © 2024, Oracle and/or its affiliates
* Copyright © 2025, Oracle and/or its affiliates
*/

import { Parser, TokenStream } from "antlr4";
Expand Down
7 changes: 7 additions & 0 deletions sql/mysql/Oracle/TypeScript/SqlMode.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright © 2025, Oracle and/or its affiliates
*/

/* eslint-disable no-underscore-dangle */
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */

/** SQL modes that control parsing behavior. */
enum SqlMode {
NoMode,
Expand Down
7 changes: 7 additions & 0 deletions sql/mysql/Oracle/TypeScript/SqlModes.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright © 2025, Oracle and/or its affiliates
*/

/* eslint-disable no-underscore-dangle */
/* cspell: ignore antlr, longlong, ULONGLONG, MAXDB */

/** SQL modes that control parsing behavior. */

import SqlMode from "./SqlMode.js";
Expand Down

0 comments on commit 63d037b

Please sign in to comment.