1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-25 12:03:53 +03:00

Remove // comments from ODBC.

This commit is contained in:
Bruce Momjian
2000-05-27 03:35:14 +00:00
parent c328e75a6f
commit ddae527c96
28 changed files with 666 additions and 661 deletions

View File

@@ -144,12 +144,12 @@ CI_set_field_info(ColumnInfoClass *self, int field_num, char *new_name,
Oid new_adtid, Int2 new_adtsize, Int4 new_atttypmod)
{
// check bounds
/* check bounds */
if((field_num < 0) || (field_num >= self->num_fields)) {
return;
}
// store the info
/* store the info */
self->name[field_num] = strdup(new_name);
self->adtid[field_num] = new_adtid;
self->adtsize[field_num] = new_adtsize;