Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8dc4755

Browse files
author
Vladimir Ershov
committed
Merge branch 'master' of git.postgrespro.ru:pgpro-dba/pgpro_scheduler
2 parents d8d3428 + 9720ab3 commit 8dc4755

22 files changed

+176
-0
lines changed

src/bit_array.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* bit_array.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdlib.h>
210
#include "bit_array.h"
311
#include "postgres.h"

src/bit_array.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* bit_array.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_BITARRAY_H
210
#define PGPRO_SCHEDULER_BITARRAY_H
311

src/char_array.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* char_array.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdio.h>
210
#include <stdlib.h>
311
#include "postgres.h"

src/char_array.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* char_array.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef CHAR_ARRAY_H
210
#define CHAR_ARRAY_H
311

src/cron_string.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* cron_string.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdio.h>
210
#include <stdlib.h>
311
#include <string.h>

src/cron_string.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* cron_string.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef CRON_STRING_PARSE_H
210
#define CRON_STRING_PARSE_H
311

src/memutils.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* memutils.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include "postgres.h"
210
#include "utils/memutils.h"
311
#include "memutils.h"

src/memutils.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* memutils.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_MEMUTILS_H
210
#define PGPRO_SCHEDULER_MEMUTILS_H
311

src/pgpro_scheduler.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* pgpro_scheduler.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#define ENABLE_LIST_COMPAT 1
210

311
#include "postgres.h"

src/pgpro_scheduler.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* pgpro_scheduler.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_H
210
#define PGPRO_SCHEDULER_H
311

src/sched_manager_poll.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* sched_manager_poll.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdlib.h>
210
#include "postgres.h"
311
#include "string.h"

src/sched_manager_poll.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* sched_manager_poll.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_MANAGER_POLL_H
210
#define PGPRO_SCHEDULER_MANAGER_POLL_H
311

src/scheduler_executor.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_executor.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdlib.h>
210
#include <stdarg.h>
311
#include "postgres.h"

src/scheduler_executor.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_executor.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_EXECUTOR_H
210
#define PGPRO_SCHEDULER_EXECUTOR_H
311

src/scheduler_job.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_job.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdio.h>
210
#include <string.h>
311
#include <stdarg.h>

src/scheduler_job.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_job.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_JOB_H
210
#define PGPRO_SCHEDULER_JOB_H
311

src/scheduler_manager.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_manager.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include <stdlib.h>
210
#include "postgres.h"
311

src/scheduler_manager.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_manager.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_MANAGER_H
210
#define PGPRO_SCHEDULER_MANAGER_H
311

src/scheduler_mtm.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_mtm.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifdef _WITH_MTM
210

311
/* This code is aimed to interact with Postgres Pro Multimaster extension

src/scheduler_mtm.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_mtm.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifdef _WITH_MTM
210
#ifndef SCHEDULER_MTM_H
311
#define SCHEDULER_MTM_H

src/scheduler_spi_utils.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_spi_utils.c
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#include "postgres.h"
210
#include "fmgr.h"
311
#include "executor/spi.h"

src/scheduler_spi_utils.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* scheduler_spi_utils.h
4+
*
5+
* Copyright (c) 2017-2018, Postgres Professional
6+
*
7+
*-------------------------------------------------------------------------
8+
*/
19
#ifndef PGPRO_SCHEDULER_SPI_H
210
#define PGPRO_SCHEDULER_SPI_H
311

0 commit comments

Comments
 (0)