Hi, David,
On Sat, Apr 26, 2025 at 8:06 PM David G. Johnston
<david.g.johnston@gmail.com> wrote:
>
> On Saturday, April 26, 2025, Igor Korot <ikorot01@gmail.com> wrote:
>>
>> but the size comes out "" (empty)
>>
>
> What is the value you are expecting?
Expecting to have "100".
What is the minimal table definition (i.e., a one or few column
table) that would produce this expected value?
CREATE TABLE IF NOT EXISTS leagues(id integer primary key, name
varchar(100), drafttype integer, scoringtype integer, roundvalues
integer, leaguetype char(5), salary integer, benchplayers integer);
Field "name" should be 100.
What does psql show if you use it to output the query against that table?
draft=# SELECT column_name, data_type, character_maximum_length,
numeric_precision, table_name FROM information_schema.columns WHERE
column_name = 'name' ORDER BY tabl
e_name;
column_name | data_type | character_maximum_length |
numeric_precision | table_name
-------------+-------------------+--------------------------+-------------------+---------------------------------
name | text | |
| abcß
name | character varying | 100 |
| leagues
name | name | |
| pg_available_extension_versions
name | name | |
| pg_available_extensions
name | text | |
| pg_config
name | text | |
| pg_cursors
name | text | |
| pg_file_settings
name | text | |
| pg_prepared_statements
name | text | |
| pg_settings
name | text | |
| pg_shmem_allocations
name | text | |
| pg_stat_slru
name | text | |
| pg_timezone_names
name | character varying | 70 |
| players
name | character varying | 50 |
| teams
(14 rows)
draft=#
Query is shorter, but it gives the result of 100.
Let me try the full one from my code...
Thank you.
>
> David J.
>