mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-01 19:45:33 +08:00
Add mention of int in variable.
This commit is contained in:
parent
bc4e6db44c
commit
11ae8ba7ea
@ -51,7 +51,7 @@ int main()
|
||||
cout << endl << endl;
|
||||
|
||||
// next, print out the instances
|
||||
for (i=0; i < data.Tuples(); i++) {
|
||||
for (int i=0; i < data.Tuples(); i++) {
|
||||
for (int j=0; j < nFields; j++)
|
||||
cout << setiosflags(ios::right) << setw(15) << data.GetValue(i,j);
|
||||
cout << endl;
|
||||
|
Loading…
Reference in New Issue
Block a user