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

Better support my sql5.5 #52

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

Commits on Dec 16, 2016

  1. Adds method to determine MySQL version used.

    Stephen More committed Dec 16, 2016
    Configuration menu
    Copy the full SHA
    cdc80bd View commit details
    Browse the repository at this point in the history
  2. Adding support for MySQL 5.5

    ----
    MySQL 5.7: ST_AsBinary(), ST_AsWKB(), AsBinary(), and AsWKB() are synonyms.
    
    MySQL 5.5: ST_AsWKB does not exist
    5.5 only supports  AsBinary(g), AsWKB(g)
    Stephen More committed Dec 16, 2016
    Configuration menu
    Copy the full SHA
    7d2ab1f View commit details
    Browse the repository at this point in the history
  3. MySQL datatype point is an OpenGIS data type: https://dev.mysql.com/d…

    …oc/refman/5.7/en/spatial-datatypes.html
    
    There for should map to the geometry of postgres
    Stephen More committed Dec 16, 2016
    Configuration menu
    Copy the full SHA
    7ff9fcb View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2016

  1. Now anything less than or equal to 5.5. will use AsWKB.

    Stephen More committed Dec 17, 2016
    Configuration menu
    Copy the full SHA
    ff35ffd View commit details
    Browse the repository at this point in the history