Skip to content

Commit a279a39

Browse files
committed
Rename template files
1 parent fe95711 commit a279a39

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PG_CONFIG ?= pg_config
22

3-
EXTENSION = postgresql_extension_template
4-
MODULE_big = postgresql_extension_template
5-
OBJS = postgresql_extension_template.o
6-
DATA = postgresql_extension_template--1.0.sql
7-
REGRESS = postgresql_extension_template
3+
EXTENSION = pg_sqlwall
4+
MODULE_big = pg_sqlwall
5+
OBJS = pg_sqlwall.o
6+
DATA = pg_sqlwall--1.0.sql
7+
REGRESS = pg_sqlwall
88
# To provide your README.md as docs, create a symlink like that:
99
#
1010
# `ln -s README.md extension_name.md`

postgresql_extension_template--1.0.sql renamed to pg_sqlwall--1.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* postgresql_extension_template--1.0.sql */
1+
/* pg_sqlwall--1.0.sql */
22

33
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
44
\echo Use "CREATE EXTENSION pg_show_plans" to load this file. \quit
File renamed without changes.

pg_sqlwall.control

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# pg_sqlwall extension
2+
comment = 'Briefly describe your extension here'
3+
default_version = '1.0'
4+
module_pathname = '$libdir/pg_sqlwall'
5+
relocatable = true

postgresql_extension_template.control

Lines changed: 0 additions & 5 deletions
This file was deleted.

sql/pg_sqlwall.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CREATE EXTENSION pg_sqlwall;
2+
3+
SELECT my_function();

sql/postgresql_extension_template.sql

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)