Peter Corless
07/24/2024, 6:33 PMMayank
Ankit Sultana
07/24/2024, 6:40 PMselect * from <http://my_db.my|my_db.my>_table
should be sufficient.
But looks like we require:
SET database=my_db;
SELECT * FROM my_table; -- this can also be my_db.my_table
I was wondering if we plan to get rid of the query option requirementMayank
Mayank
Ankit Sultana
07/24/2024, 7:55 PMPeter Corless
07/25/2024, 3:55 PMAnkit Sultana
07/26/2024, 5:12 PMPeter Corless
07/29/2024, 4:56 PMThese features point to the same PR, but only the first is accurate:
⢠Support for SQL Formatting in Query Editor #11725
⢠Hash Function for UUID Primary Keys #11725
⢠CLP Compression Codec in Forward Indexes #11725I could find one correct PR: ⢠Hash Function for UUID Primary Keys #12538 I couldn't find anything matching CLP Compression Codec in Forward Indexes
Ankit Sultana
07/29/2024, 5:05 PMPeter Corless
07/29/2024, 5:53 PMNew Window Functions: LEAD, LAG, FIRST_VALUE, LAST_VALUE #12878 #13340
⢠LEAD returns the value from the next row in a frame
⢠LAG returns the value from the previous row in a frame
⢠FIRST_VALUE and LAST_VALUE return the respective extremal values in the frameTechnically, don't "LEAD" and "LAG" include an offset so you could return values from n rows next or previous in a frame?
Ankit Sultana
07/29/2024, 5:58 PMAnkit Sultana
07/29/2024, 6:41 PMPeter Corless
07/30/2024, 3:32 PMAnkit Sultana
07/30/2024, 3:39 PMMayank
Peter Corless
08/02/2024, 4:42 PMImproved MV and Array Function Support
⢠Added array sum aggregation functions for point-wise array operations #13324.
⢠Added support forMV transform function #13443.valueIn
⢠Fixed bug in numeric casts for MV columns in filters #13425.
⢠Fixed NPE in ArrayAgg when a column contains no data #13358.
⢠Fixed array literal handling #13345.A lot of people (including myself) associate "MV" with materialized views, whereas "MV" in this context stands for multi-valued column. Maybe change the title as follows:
Improved Multi-Value (MV) and Array Function SupportThoughts?
Ankit Sultana
08/02/2024, 5:18 PMPeter Corless
08/07/2024, 9:02 PMAnkit Sultana
08/07/2024, 9:20 PMPeter Corless
08/07/2024, 9:58 PMPeter Corless
08/19/2024, 4:36 PMAnkit Sultana
08/19/2024, 4:41 PMAnkit Sultana
08/19/2024, 10:30 PMAnkit Sultana
08/20/2024, 7:48 PMPeter Corless
08/20/2024, 7:58 PMPeter Corless
08/20/2024, 8:34 PMPeter Corless
08/21/2024, 3:17 PMXiang Fu