Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UUID support dbic , fixes issue #145 #146

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on May 29, 2023

  1. ignoring column defaults of db which are function calls issue preacti…

    …on#124
    
    currently read_schema returns the default values of db in verbatim
    even if they are function calls. This causes attempts to insert
    the function call body as defaults in columns instead of the
    the value, which does not makes sense. The current fix returns undef
    for such column defaults. Additionally as a measure of caution it
    does not do the above in case the default has been handled in
    fix_default mapping.
    redgrapetech committed May 29, 2023
    Configuration menu
    Copy the full SHA
    9d006cb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from redgrape-tech/default_values_dbic_rg

    ignoring column defaults of db which are function calls issue preaction#124
    rmallah committed May 29, 2023
    Configuration menu
    Copy the full SHA
    0dc0bb1 View commit details
    Browse the repository at this point in the history
  3. support for uuid data type column in search

    currently uuid columns are typed as string with no
    particular format. However uuid strings stored in
    uuid data types in databases does not support the
    like operator. It is better to use '=' operator for
    the uuid columns for a functional match.
    redgrapetech committed May 29, 2023
    Configuration menu
    Copy the full SHA
    a555e2c View commit details
    Browse the repository at this point in the history