Skip to content

Commit

Permalink
Moved int128 source files into int128 directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Yen committed Apr 20, 2023
1 parent 7fc0261 commit a2b7171
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE_big = postgres_web3
OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
OBJS = $(patsubst %.c,%.o,$(wildcard src/**/*.c))
EXTENSION = postgres_web3
DATA = postgres_web3--1.0.sql
DOCS = README.postgres_web3
Expand Down
2 changes: 1 addition & 1 deletion src/int128_aggregates.c → src/int128/int128_aggregates.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "pw3.h"
#include "../pw3.h"

#include "utils/numeric.h"
#include "utils/builtins.h"
Expand Down
2 changes: 1 addition & 1 deletion src/int128_casts.c → src/int128/int128_casts.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "pw3.h"
#include "../pw3.h"

PG_FUNCTION_INFO_V1(int128_as_int2);
Datum int128_as_int2(PG_FUNCTION_ARGS)
Expand Down
2 changes: 1 addition & 1 deletion src/int128_inout.c → src/int128/int128_inout.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "pw3.h"
#include "../pw3.h"
#include "libpq/pqformat.h"

PG_FUNCTION_INFO_V1(int128_in);
Expand Down
2 changes: 1 addition & 1 deletion src/int128_operators.c → src/int128/int128_operators.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "pw3.h"
#include "../pw3.h"

PG_FUNCTION_INFO_V1(int128_add);
Datum int128_add(PG_FUNCTION_ARGS)
Expand Down

0 comments on commit a2b7171

Please sign in to comment.