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
192b4aac
Commit
192b4aac
authored
Jan 09, 2014
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed regression test to ecpg test suite for alignment problem just with last
commit.
parent
d685e242
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
147 additions
and
142 deletions
+147
-142
src/interfaces/ecpg/test/expected/sql-desc.c
src/interfaces/ecpg/test/expected/sql-desc.c
+79
-75
src/interfaces/ecpg/test/expected/sql-desc.stderr
src/interfaces/ecpg/test/expected/sql-desc.stderr
+66
-66
src/interfaces/ecpg/test/sql/desc.pgc
src/interfaces/ecpg/test/sql/desc.pgc
+2
-1
No files found.
src/interfaces/ecpg/test/expected/sql-desc.c
View file @
192b4aac
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/test/expected/sql-desc.stderr
View file @
192b4aac
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/test/sql/desc.pgc
View file @
192b4aac
...
@@ -14,12 +14,13 @@ main(void)
...
@@ -14,12 +14,13 @@ main(void)
int val1output = 2, val2i = 0;
int val1output = 2, val2i = 0;
int val2null = -1;
int val2null = -1;
int ind1, ind2;
int ind1, ind2;
char desc1[8] = "outdesc";
EXEC SQL END DECLARE SECTION;
EXEC SQL END DECLARE SECTION;
ECPGdebug(1, stderr);
ECPGdebug(1, stderr);
EXEC SQL ALLOCATE DESCRIPTOR indesc;
EXEC SQL ALLOCATE DESCRIPTOR indesc;
EXEC SQL ALLOCATE DESCRIPTOR
outdesc
;
EXEC SQL ALLOCATE DESCRIPTOR
:desc1
;
EXEC SQL SET DESCRIPTOR indesc VALUE 1 DATA = :val1;
EXEC SQL SET DESCRIPTOR indesc VALUE 1 DATA = :val1;
EXEC SQL SET DESCRIPTOR indesc VALUE 2 INDICATOR = :val2i, DATA = :val2;
EXEC SQL SET DESCRIPTOR indesc VALUE 2 INDICATOR = :val2i, DATA = :val2;
...
...
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