Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: soedirgo/pg_tle Loading
base: main
Choose a base ref
...
head repository: aws/pg_tle Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 25 files changed
  • 5 contributors

Commits on Jan 11, 2024

  1. Add example of ndistinct computation (aws#256)

    ndistinct is an extension that efficiently calculates an
    n_distinct value in a PostgreSQL table using HLL (HyperLogLog) [1].
    This extension can also automatically set the computed n_distinct
    value on a per-column level, making this value available
    to the ANALYZE command.
    
    This extension is inspired by research and design performed by
    Jim Finnerty <jfinnert@amazon.com>.
    
    Authors: jfinnert@amazon.com, simseih@amazon.com
    samimseih committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    d5e99e3 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Configuration menu
    Copy the full SHA
    4670862 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Start background workers on consistent state (aws#262)

    Allows workers to start on hot standby.
    adamguo0 committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    43f8bc0 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Init passcheck worker_handle to NULL (aws#264)

    Needed so that passcheck can accurately check whether the worker has
    been registered
    adamguo0 committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    93e330c View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Support customized alignment and storage for pg_tle create type API (a…

    …ws#266)
    
    In the previous version, we used default int4 alignment and plain storage (non-TOASTable). The data will always be stored in-line and not compressed. An error will be reported if the value exceeds the limit:
    ERROR: row is too big: size xxx, maximum size xxx.
    
    With this change, users can customize the alignment and storage strategies. Compression or out-of-line storage can be used depending on the storage strategy (https://www.postgresql.org/docs/current/storage-toast.html).
    
    The default alignment is int4 while the default storage is plain, compatible with previous versions.
    lyupan committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    4e18a50 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Allow mixed case in pgtle.clientauth_users_to_skip and pgtle.clientau…

    …th_databases_to_skip (aws#268)
    
    Previously users or databases set in pgtle.clientauth_users_to_skip and pgtle.clientauth_databases_to_skip do not take effect if their names are in mixed case. This commit handles using mixed case in pgtle.clientauth_users_to_skip and pgtle.clientauth_databases_to_skip.
    TianzeMYou committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    3a80a32 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Configuration menu
    Copy the full SHA
    27aa6ed View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. Configuration menu
    Copy the full SHA
    8aed18f View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Configuration menu
    Copy the full SHA
    db85b3b View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    e99175f View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Configuration menu
    Copy the full SHA
    4e8e0f4 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Configuration menu
    Copy the full SHA
    1b12a5c View commit details
    Browse the repository at this point in the history
Loading