lidavidm commented on issue #1018:
URL: https://github.com/apache/arrow-adbc/issues/1018#issuecomment-1716107907
In Postgres, you can see how it shadows existing tables with the same name:
```
postgres=# CREATE TEMP TABLE foo (bar INT);
CREATE TABLE
postgres=# INSERT INTO foo VALUES (1);
INSERT 0 1
postgres=# SELECT * FROM foo;
bar
-----
1
(1 row)
postgres=# SELECT * FROM pg_temp.foo;
bar
-----
1
(1 row)
postgres=# SELECT * FROM public.foo;
col
------------------------
1970-01-02 02:34:05+00
(1 row)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]