Skip to content

Commit 8beba17

Browse files
committed
Add PostgreSQL license headers
1 parent 6cee0ad commit 8beba17

132 files changed

Lines changed: 390 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/onCreateCommand.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the PostgreSQL License.
4+
25
set -e
36

47
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the PostgreSQL License.
3+
14
# Multi-stage build for pg_durable extension
25
# Stage 1: Build the extension
36
FROM rustlang/rust:nightly-bookworm AS builder

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the PostgreSQL License.
3+
14
# pg_durable Makefile
25

36
# PostgreSQL major version for pgrx (override with: make ... PG_VERSION=pg16)

build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the PostgreSQL License.
3+
14
//! Build script to embed build timestamp
25
36
use std::process::Command;

docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the PostgreSQL License.
3+
14
services:
25
postgres:
36
image: pg_durable_postgres:latest

docker-entrypoint-initdb.d/01-init-pg-durable.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the PostgreSQL License.
4+
25
set -e
36

47
# Create the extension in the default database

examples/azure-functions/function-app/chunk_text/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the PostgreSQL License.
3+
14
import json
25
from typing import Any
36

examples/azure-functions/scripts/cleanup_azure.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the PostgreSQL License.
4+
25
set -euo pipefail
36

47
usage() {

examples/azure-functions/scripts/configure_pg.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the PostgreSQL License.
4+
25
set -euo pipefail
36

47
usage() {

examples/azure-functions/scripts/create_function_app.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the PostgreSQL License.
4+
25
set -euo pipefail
36

47
usage() {

0 commit comments

Comments
 (0)