Skip to content

Commit 5fb1a06

Browse files
authored
Added Npgsql licence information (#25)
1 parent 881ecdc commit 5fb1a06

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

src/dbup-postgresql/Npgsql-LICENSE

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Copyright (c) 2002-2021, Npgsql
2+
3+
Permission to use, copy, modify, and distribute this software and its
4+
documentation for any purpose, without fee, and without a written agreement
5+
is hereby granted, provided that the above copyright notice and this
6+
paragraph and the following two paragraphs appear in all copies.
7+
8+
IN NO EVENT SHALL NPGSQL BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
9+
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
10+
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
11+
Npgsql HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12+
13+
NPGSQL SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED
14+
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
15+
PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND Npgsql
16+
HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
17+
OR MODIFICATIONS.

src/dbup-postgresql/PostgresqlQueryParser.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
#nullable enable
1+
// This code based on original code from Npgsql
2+
// https://github.com/npgsql/npgsql/blob/main/src/Npgsql/SqlQueryParser.cs
3+
// which is BSD license: https://github.com/npgsql/npgsql/blob/main/LICENSE
4+
5+
#nullable enable
26
using System;
37
using System.Collections.Generic;
48
using System.Diagnostics;

0 commit comments

Comments
 (0)