Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ce4a287f
Commit
ce4a287f
authored
22 years ago
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix interface example errors causes by backend changes.
Permaine Cheung
parent
4ac77d37
REL_14_STABLE
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
src/interfaces/libpgeasy/examples/pginsert.c
src/interfaces/libpgeasy/examples/pginsert.c
+1
-1
src/interfaces/libpgeasy/examples/pgnulltest.c
src/interfaces/libpgeasy/examples/pgnulltest.c
+1
-1
src/interfaces/libpq++/examples/testlibpq4.sql
src/interfaces/libpq++/examples/testlibpq4.sql
+1
-1
src/interfaces/libpq++/examples/testlibpq6.cc
src/interfaces/libpq++/examples/testlibpq6.cc
+1
-1
No files found.
src/interfaces/libpgeasy/examples/pginsert.c
View file @
ce4a287f
...
...
@@ -41,7 +41,7 @@ main(int argc, char **argv)
afloat float4, \
adouble float8, \
achar char, \
achar16 char
16
, \
achar16 char
(16)
, \
abpchar char(10), \
avarchar varchar(50), \
atext text, \
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/libpgeasy/examples/pgnulltest.c
View file @
ce4a287f
...
...
@@ -52,7 +52,7 @@ main(int argc, char **argv)
afloat float4, \
adouble float8, \
achar char, \
achar16 char
16
, \
achar16 char
(16)
, \
abpchar char(10), \
avarchar varchar(50), \
atext text, \
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/libpq++/examples/testlibpq4.sql
View file @
ce4a287f
...
...
@@ -2,4 +2,4 @@ CREATE TABLE TBL1 (i int4);
CREATE
TABLE
TBL2
(
i
int4
);
CREATE
RULE
r1
AS
ON
INSERT
TO
TBL1
DO
[
INSERT
INTO
TBL2
values
(
new
.
i
);
NOTIFY
TBL2
]
;
CREATE
RULE
r1
AS
ON
INSERT
TO
TBL1
DO
(
INSERT
INTO
TBL2
values
(
new
.
i
);
NOTIFY
TBL2
)
;
This diff is collapsed.
Click to expand it.
src/interfaces/libpq++/examples/testlibpq6.cc
View file @
ce4a287f
...
...
@@ -25,7 +25,7 @@ int main()
else
cout
<<
"Connected to database '"
<<
dbName
<<
"'..."
<<
endl
;
// Create a new table
if
(
!
data
.
ExecCommandOk
(
"CREATE TABLE foo (a int4, b char
16
, d float8)"
)
)
{
if
(
!
data
.
ExecCommandOk
(
"CREATE TABLE foo (a int4, b char
(16)
, d float8)"
)
)
{
cerr
<<
"CREATE TABLE foo command failed"
<<
endl
;
exit
(
1
);
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment