mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Use PostgreSQL's standard declaration for a 32-bit integer to define
the cash data type.
This commit is contained in:
parent
d980ddb544
commit
e160fcd696
@ -10,7 +10,7 @@
|
||||
#define CASH_H
|
||||
|
||||
/* if we store this as 4 bytes, we better make it int, not long, bjm */
|
||||
typedef signed int Cash;
|
||||
typedef int32 Cash;
|
||||
|
||||
extern Datum cash_in(PG_FUNCTION_ARGS);
|
||||
extern Datum cash_out(PG_FUNCTION_ARGS);
|
||||
|
Loading…
Reference in New Issue
Block a user